From f84e0691f138bf6e05981900fe31afcc5e06a449 Mon Sep 17 00:00:00 2001 From: Niklas Eiling Date: Wed, 5 Jun 2024 17:43:54 +0200 Subject: [PATCH] fpga: fix redundant return in getPollFD Signed-off-by: Niklas Eiling --- lib/nodes/fpga.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/nodes/fpga.cpp b/lib/nodes/fpga.cpp index ec5d90952..bac7e9e04 100644 --- a/lib/nodes/fpga.cpp +++ b/lib/nodes/fpga.cpp @@ -346,7 +346,6 @@ std::vector FpgaNode::getPollFDs() { } else { return {}; } - return card->vfioDevice->getEventfdList(); } int FpgaNodeFactory::start(SuperNode *sn) {