1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:07:46 +00:00

Kernel: Re-organize header includes in the HID subsystem code

Just a small clean-up in the I8042Controller and HIDManagement code so
it will be easier to modify this code in future changes.
This commit is contained in:
Liav A 2023-04-15 10:05:20 +03:00 committed by Andreas Kling
parent 75cc670bcb
commit 747efc5265
4 changed files with 8 additions and 8 deletions

View file

@ -10,6 +10,9 @@
#include <Kernel/Arch/x86_64/ISABus/HID/PS2MouseDevice.h>
#include <Kernel/Arch/x86_64/ISABus/HID/VMWareMouseDevice.h>
#include <Kernel/Arch/x86_64/ISABus/I8042Controller.h>
#include <Kernel/Devices/HID/KeyboardDevice.h>
#include <Kernel/Devices/HID/MouseDevice.h>
#include <Kernel/Devices/HID/ScanCodeEvent.h>
#include <Kernel/Sections.h>
namespace Kernel {

View file

@ -6,11 +6,10 @@
#pragma once
#include <AK/AtomicRefCounted.h>
#include <AK/Types.h>
#include <Kernel/Devices/HID/Controller.h>
#include <Kernel/Devices/HID/KeyboardDevice.h>
#include <Kernel/Devices/HID/MouseDevice.h>
#include <Kernel/Devices/HID/ScanCodeEvent.h>
#include <Kernel/Locking/Spinlock.h>
namespace Kernel {