diff options
author | Ingo Molnar <[email protected]> | 2017-01-28 22:49:39 +0100 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2017-01-28 22:55:26 +0100 |
commit | dd618c7256121c753f3c7451e159f2ae53b73d3c (patch) | |
tree | 9316b70baf9a000e857e6a882b4f66aafb5a7921 | |
parent | 090d717164eec7d7bf7c0db396a123e1f9157dbf (diff) |
x86/boot/e820: Remove unnecessary #include's
A number of headers were included into e820.c unnecessarily - remove them.
No change in functionality.
Cc: Alex Thorlton <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Brian Gerst <[email protected]>
Cc: Dan Williams <[email protected]>
Cc: Denys Vlasenko <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: Huang, Ying <[email protected]>
Cc: Josh Poimboeuf <[email protected]>
Cc: Juergen Gross <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Paul Jackson <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Rafael J. Wysocki <[email protected]>
Cc: Tejun Heo <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Wei Yang <[email protected]>
Cc: Yinghai Lu <[email protected]>
Cc: [email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/kernel/e820.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c index 97d1250f7507..9d179676a89e 100644 --- a/arch/x86/kernel/e820.c +++ b/arch/x86/kernel/e820.c @@ -8,13 +8,8 @@ * quirks and other tweaks, and feeds that into the generic Linux memory * allocation code routines via a platform independent interface (memblock, etc.). */ -#include <linux/kernel.h> -#include <linux/types.h> -#include <linux/init.h> #include <linux/crash_dump.h> -#include <linux/export.h> #include <linux/bootmem.h> -#include <linux/pfn.h> #include <linux/suspend.h> #include <linux/acpi.h> #include <linux/firmware-map.h> @@ -22,9 +17,7 @@ #include <linux/sort.h> #include <asm/e820/api.h> -#include <asm/proto.h> #include <asm/setup.h> -#include <asm/cpufeature.h> /* * We organize the E820 table into two main data structures: |