From 3db2005bbf24f37d2774287eaf44cf92b56e930f Mon Sep 17 00:00:00 2001 From: Pascal Henry Bauer Date: Fri, 10 Feb 2023 13:32:30 +0100 Subject: [PATCH] removed duplicated declarations Signed-off-by: Pascal Henry Bauer --- fpga/include/villas/fpga/pcie_card.hpp | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/fpga/include/villas/fpga/pcie_card.hpp b/fpga/include/villas/fpga/pcie_card.hpp index 8cc89d119..e29ddee70 100644 --- a/fpga/include/villas/fpga/pcie_card.hpp +++ b/fpga/include/villas/fpga/pcie_card.hpp @@ -59,18 +59,6 @@ public: void dump() { } - std::shared_ptr - lookupIp(const std::string &name) const; - - std::shared_ptr - lookupIp(const Vlnv &vlnv) const; - - std::shared_ptr - lookupIp(const ip::IpIdentifier &id) const; - - bool mapMemoryBlock(const MemoryBlock &block); - bool unmapMemoryBlock(const MemoryBlock &block); - public: // TODO: make this private bool doReset; // Reset VILLASfpga during startup? int affinity; // Affinity for MSI interrupts @@ -79,13 +67,6 @@ public: // TODO: make this private std::shared_ptr pdev; // PCI device handle - // Slave address space ID to access the PCIe address space from the FPGA - MemoryManager::AddressSpaceId addrSpaceIdDeviceToHost; - - // Address space identifier of the master address space of this FPGA card. - // This will be used for address resolution of all IPs on this card. - MemoryManager::AddressSpaceId addrSpaceIdHostToDevice; - protected: Logger getLogger() const