1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:48:11 +00:00

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
parent a3fa40fc07
commit c335c94242
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 {