diff options
author | Damien Zammit <damien@zamaudio.com> | 2025-07-12 12:34:23 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-07-12 14:38:35 +0200 |
commit | ea38b460411ba7e677181dfe58b74009a82a5ec1 (patch) | |
tree | c22f2989870c30313d1d6caa5b32abda4ea0e0b2 | |
parent | dfa25cdd588898dd5618c89b3896af9771ba5620 (diff) |
ioapic: Make it clear that multiple ioapics don't quite work yet
Message-ID: <20250712123404.20826-1-damien@zamaudio.com>
-rw-r--r-- | i386/i386at/ioapic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/i386/i386at/ioapic.c b/i386/i386at/ioapic.c index d0724f76..abeab3ab 100644 --- a/i386/i386at/ioapic.c +++ b/i386/i386at/ioapic.c @@ -293,6 +293,7 @@ ioapic_toggle(int pin, int mask) void ioapic_irq_eoi(int pin) { + /* FIXME: multiple ioapics (not always zero) */ int apic = 0; union ioapic_route_entry_union oldentry, entry; |