diff --git a/fpga/include/villas/fpga/pciecard.hpp b/fpga/include/villas/fpga/pciecard.hpp index 7c784da63..6e3da0b85 100644 --- a/fpga/include/villas/fpga/pciecard.hpp +++ b/fpga/include/villas/fpga/pciecard.hpp @@ -76,11 +76,8 @@ private: std::set memoryBlocksMapped; public: // TODO: make this private - std::list> ips; // IPs located on this FPGA card - bool doReset; // Reset VILLASfpga during startup? int affinity; // Affinity for MSI interrupts - bool polling; // Poll on interrupts? std::string name; // The name of the FPGA card @@ -89,9 +86,6 @@ public: // TODO: make this private // The VFIO container that this card is part of std::shared_ptr vfioContainer; - // The VFIO device that represents this card - std::shared_ptr vfioDevice; - // Slave address space ID to access the PCIe address space from the FPGA MemoryManager::AddressSpaceId addrSpaceIdDeviceToHost; @@ -105,8 +99,6 @@ protected: { return villas::logging.get(name); } - - Logger logger; }; class PCIeCardFactory : public plugin::Plugin {