diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-07-18 09:15:52 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-07 11:48:00 +0200 |
commit | 2c3b0baf7652e6ba64ffd1414997270a3ab3eaea (patch) | |
tree | e04c94338f60762054085974501539484f033fa5 /Kernel/Bus/PCI | |
parent | f7f794e74a7fa28a93431e457959eba2bbac8c0c (diff) | |
download | serenity-2c3b0baf7652e6ba64ffd1414997270a3ab3eaea.zip |
Kernel: Move SpinLock.h into Locking/
Diffstat (limited to 'Kernel/Bus/PCI')
-rw-r--r-- | Kernel/Bus/PCI/MMIOAccess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Bus/PCI/MMIOAccess.h b/Kernel/Bus/PCI/MMIOAccess.h index c110161f84..68972fb008 100644 --- a/Kernel/Bus/PCI/MMIOAccess.h +++ b/Kernel/Bus/PCI/MMIOAccess.h @@ -12,11 +12,11 @@ #include <AK/Types.h> #include <Kernel/ACPI/Definitions.h> #include <Kernel/Bus/PCI/Access.h> +#include <Kernel/Locking/SpinLock.h> #include <Kernel/Memory/AnonymousVMObject.h> #include <Kernel/Memory/PhysicalRegion.h> #include <Kernel/Memory/Region.h> #include <Kernel/Memory/VMObject.h> -#include <Kernel/SpinLock.h> namespace Kernel { namespace PCI { |