diff options
author | Sean Christopherson <sean.j.christopherson@intel.com> | 2019-11-26 17:54:07 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2019-12-10 10:15:47 +0100 |
commit | ca947b72e1dec3a000190733f7e0be38fe73eaae (patch) | |
tree | 1660f316f98bb488d047b5ab3bc50c985b9d2677 /arch/x86/kernel/setup.c | |
parent | x86/efi: Explicitly include realmode.h to handle RM trampoline quirk (diff) | |
download | linux-ca947b72e1dec3a000190733f7e0be38fe73eaae.tar.xz linux-ca947b72e1dec3a000190733f7e0be38fe73eaae.zip |
x86/boot: Explicitly include realmode.h to handle RM reservations
Explicitly include asm/realmode.h, which provides reserve_real_mode(),
instead of picking it up by an indirect include of asm/acpi.h. acpi.h
will soon stop including realmode.h so that changing realmode.h doesn't
require a full kernel rebuild.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Link: https://lkml.kernel.org/r/20191126165417.22423-3-sean.j.christopherson@intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r-- | arch/x86/kernel/setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index b5ac9932bcf6..a58498364cac 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -35,6 +35,7 @@ #include <asm/kaslr.h> #include <asm/mce.h> #include <asm/mtrr.h> +#include <asm/realmode.h> #include <asm/olpc_ofw.h> #include <asm/pci-direct.h> #include <asm/prom.h> |