Kernel: Force PCI irq line usage when not using APIC

afaik PIC does not support MSI
This commit is contained in:
2024-07-23 09:08:00 +03:00
parent 539afb329a
commit cda0276d39
2 changed files with 11 additions and 11 deletions

View File

@@ -29,7 +29,7 @@ namespace Kernel
private:
SpinLock m_lock;
uint16_t m_reserved_irqs { 0 };
uint16_t m_reserved_irqs { 1u << 2 };
friend class InterruptController;
};