diff options
author | Liav A <liavalb@gmail.com> | 2021-06-25 09:46:17 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-02 13:16:12 +0200 |
commit | 6568bb47cb6b3ad7ca0c15948ce1a279792d92de (patch) | |
tree | fa0ca59a4974e241d3bc789382c41ce699fba3bc /Kernel/Devices/PCISerialDevice.h | |
parent | 26e9140ea14d3529f42e64e472e2ff6c4dd907bd (diff) | |
download | serenity-6568bb47cb6b3ad7ca0c15948ce1a279792d92de.zip |
Kernel/PCI: Move the PCI components as a subfolder to the Bus directory
Diffstat (limited to 'Kernel/Devices/PCISerialDevice.h')
-rw-r--r-- | Kernel/Devices/PCISerialDevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Devices/PCISerialDevice.h b/Kernel/Devices/PCISerialDevice.h index f2f7206cba..864941ed70 100644 --- a/Kernel/Devices/PCISerialDevice.h +++ b/Kernel/Devices/PCISerialDevice.h @@ -6,10 +6,10 @@ #pragma once +#include <Kernel/Bus/PCI/Device.h> +#include <Kernel/Bus/PCI/IDs.h> #include <Kernel/Devices/CharacterDevice.h> #include <Kernel/Devices/SerialDevice.h> -#include <Kernel/PCI/Device.h> -#include <Kernel/PCI/IDs.h> namespace Kernel { |