diff options
author | Steffen Rusitschka <rusi@gmx.de> | 2022-11-18 23:17:06 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-11-18 16:25:33 -0800 |
commit | 7725042235b8e59c7f3f927e8cfb27bf124bfbaf (patch) | |
tree | 8070d0fd3116f8df672a4a892a6f8d75777ea6f4 /Kernel/Bus | |
parent | 8363225320f9cb3fc79e6e9916bb6d441a04552c (diff) | |
download | serenity-7725042235b8e59c7f3f927e8cfb27bf124bfbaf.zip |
Kernel: Fix includes when building aarch64
This patch fixes some include problems on aarch64. aarch64 is still
currently broken but this will get us back to the underlying problem
of FloatExtractor.
Diffstat (limited to 'Kernel/Bus')
-rw-r--r-- | Kernel/Bus/PCI/Access.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Bus/PCI/Access.h b/Kernel/Bus/PCI/Access.h index 31ea56049d..377d52d984 100644 --- a/Kernel/Bus/PCI/Access.h +++ b/Kernel/Bus/PCI/Access.h @@ -8,6 +8,7 @@ #include <AK/Bitmap.h> #include <AK/HashMap.h> +#include <AK/NonnullOwnPtr.h> #include <AK/Try.h> #include <AK/Vector.h> #include <Kernel/Bus/PCI/Controller/HostController.h> |