From 37d5739c5a391750578492ba7155ff2680f6ab8b Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Mon, 10 Mar 2025 12:54:45 +0100 Subject: [PATCH] chore: update comment Signed-off-by: Pascal Bauer --- fpga/lib/ips/intc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpga/lib/ips/intc.cpp b/fpga/lib/ips/intc.cpp index 8b3e6a12f..503af6dc2 100644 --- a/fpga/lib/ips/intc.cpp +++ b/fpga/lib/ips/intc.cpp @@ -159,7 +159,7 @@ ssize_t InterruptController::waitForInterrupt(int irq) { logger->warn("timeout waiting for interrupt {}", irq); return -1; } - // Block until there has been an interrupt, read number of interruptsvfio_device + // Block until there has been an interrupt, read number of interrupts ssize_t ret = read(irq_vectors[0].eventFds[irq], &count, sizeof(count)); if (ret != sizeof(count)) { logger->error("Read failure on interrupt {}, {}", irq, ret);