Kernel: Simplify APIC::enable()

We install a SpuriousInterruptHandler when calling APIC::enable(),
and we don't enable local interrupts for now.
This commit is contained in:
Liav A 2020-03-06 03:27:08 +02:00 committed by Andreas Kling
commit c335c94242
Notes: sideshowbarker 2024-07-19 08:52:49 +09:00
2 changed files with 19 additions and 19 deletions

View file

@ -30,6 +30,7 @@
#include <AK/OwnPtr.h>
#include <AK/Types.h>
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/Interrupts/IRQController.h>
#include <Kernel/Interrupts/GenericInterruptHandler.h>
namespace Kernel {