diff options
author | Liav A <liavalb@gmail.com> | 2021-09-11 10:39:47 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-12 11:52:16 +0200 |
commit | 9132596b8e79a56a1ab0aa146bd837266ed61b09 (patch) | |
tree | 33ff453378549b12a0bbd43b5e7d56a7eca8f181 /Kernel/Devices/HID | |
parent | a9ec98028b7c50a7fd0308ff78cd86480e224d32 (diff) | |
download | serenity-9132596b8e79a56a1ab0aa146bd837266ed61b09.zip |
Kernel: Move ACPI and BIOS code into the new Firmware directory
This will somwhat help unify them also under the same SysFS directory in
the commit.
Also, it feels much more like this change reflects the reality that both
ACPI and the BIOS are part of the firmware on x86 computers.
Diffstat (limited to 'Kernel/Devices/HID')
-rw-r--r-- | Kernel/Devices/HID/HIDManagement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Devices/HID/HIDManagement.cpp b/Kernel/Devices/HID/HIDManagement.cpp index 0fdc78839b..c7211fefbb 100644 --- a/Kernel/Devices/HID/HIDManagement.cpp +++ b/Kernel/Devices/HID/HIDManagement.cpp @@ -5,10 +5,10 @@ */ #include <AK/Singleton.h> -#include <Kernel/ACPI/Parser.h> #include <Kernel/CommandLine.h> #include <Kernel/Devices/HID/HIDManagement.h> #include <Kernel/Devices/HID/I8042Controller.h> +#include <Kernel/Firmware/ACPI/Parser.h> #include <Kernel/Sections.h> namespace Kernel { |