From 891a9af6234e14be2e29b6e7c277391a613e3844 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 29 Nov 2025 16:18:10 +0100 Subject: [PATCH] pcid: Fix compilation on x86 --- pcid/src/driver_interface/irq_helpers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/pcid/src/driver_interface/irq_helpers.rs b/pcid/src/driver_interface/irq_helpers.rs index 7ed060bce0..28ca077a92 100644 --- a/pcid/src/driver_interface/irq_helpers.rs +++ b/pcid/src/driver_interface/irq_helpers.rs @@ -325,6 +325,7 @@ pub fn pci_allocate_interrupt_vector( // INTx# pin based interrupts. InterruptVector { irq_handle: irq.irq_handle(driver), + vector: 0, kind: InterruptVectorKind::Legacy, } } else {