diff options
author | Sean Christopherson <sean.j.christopherson@intel.com> | 2019-11-26 17:54:15 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2019-12-10 10:15:48 +0100 |
commit | cb28909525acdd1a89c5b2de761eaf2f788c0057 (patch) | |
tree | 3fa5127f797f54f633bd585ba6eb0f38b88469f5 /arch/x86/kernel/acpi | |
parent | ASoC: Intel: Skylake: Explicitly include linux/io.h for virt_to_phys() (diff) | |
download | linux-cb28909525acdd1a89c5b2de761eaf2f788c0057.tar.xz linux-cb28909525acdd1a89c5b2de761eaf2f788c0057.zip |
x86/ACPI/sleep: Remove an unnecessary include of asm/realmode.h
None of the declarations in x86's acpi/sleep.h are in any way dependent
on the real mode boot code. Remove sleep.h's include of asm/realmode.h
to limit the dependencies on realmode.h to code that actually interacts
with the boot code.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://lkml.kernel.org/r/20191126165417.22423-11-sean.j.christopherson@intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/acpi')
-rw-r--r-- | arch/x86/kernel/acpi/sleep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/sleep.h b/arch/x86/kernel/acpi/sleep.h index fbb60ca4255c..d06c2079b6c1 100644 --- a/arch/x86/kernel/acpi/sleep.h +++ b/arch/x86/kernel/acpi/sleep.h @@ -3,7 +3,7 @@ * Variables and functions used by the code in sleep.c */ -#include <asm/realmode.h> +#include <linux/linkage.h> extern unsigned long saved_video_mode; extern long saved_magic; |