diff options
author | Liav A <liavalb@gmail.com> | 2022-10-04 03:05:54 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-28 11:53:41 +0100 |
commit | 5ff318cf3ac7d12470c357ba0bac8cd7ffa10e3e (patch) | |
tree | 36b3982d64e9602e80f990ed86790d8868827998 /Kernel/CommandLine.h | |
parent | 32270dcd20344ae2cd753232634cdcd4f0a4300e (diff) | |
download | serenity-5ff318cf3ac7d12470c357ba0bac8cd7ffa10e3e.zip |
Kernel: Remove i686 support
Diffstat (limited to 'Kernel/CommandLine.h')
-rw-r--r-- | Kernel/CommandLine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/CommandLine.h b/Kernel/CommandLine.h index 28a48ac6e0..5e002ea1d7 100644 --- a/Kernel/CommandLine.h +++ b/Kernel/CommandLine.h @@ -32,7 +32,7 @@ enum class AcpiFeatureLevel { enum class PCIAccessLevel { None, -#if ARCH(I386) || ARCH(X86_64) +#if ARCH(X86_64) IOAddressing, #endif MemoryAddressing, |