From 2bf8bf93bdc98071deab4b628b42447631853a51 Mon Sep 17 00:00:00 2001 From: daniel-k Date: Wed, 6 Dec 2017 17:29:20 +0100 Subject: [PATCH] ips/intc: remove configureJson() method because not needed --- fpga/include/villas/fpga/ips/intc.hpp | 3 --- fpga/lib/ips/intc.cpp | 7 ------- 2 files changed, 10 deletions(-) diff --git a/fpga/include/villas/fpga/ips/intc.hpp b/fpga/include/villas/fpga/ips/intc.hpp index 2bf36fecf..922bacca7 100644 --- a/fpga/include/villas/fpga/ips/intc.hpp +++ b/fpga/include/villas/fpga/ips/intc.hpp @@ -58,7 +58,6 @@ private: int efds[maxIrqs]; int nos[maxIrqs]; bool polling[maxIrqs]; -// Interrupt irqs[maxIrqs]; /**< State of available interrupts */ }; @@ -83,8 +82,6 @@ public: FpgaVlnv getCompatibleVlnv() const { return FpgaVlnv("acs.eonerc.rwth-aachen.de:user:axi_pcie_intc:"); } - - bool configureJson(FpgaIp* ip, json_t *json); }; } // namespace villas diff --git a/fpga/lib/ips/intc.cpp b/fpga/lib/ips/intc.cpp index 9471636e9..8f4946824 100644 --- a/fpga/lib/ips/intc.cpp +++ b/fpga/lib/ips/intc.cpp @@ -150,11 +150,4 @@ uint64_t InterruptController::waitForInterrupt(int irq) } } - -bool InterruptControllerFactory::configureJson(FpgaIp *ip, json_t *json) -{ - // parse json and configure instance here - return true; -} - } // namespace villas