diff options
author | Nicolas Iooss <[email protected]> | 2016-02-14 13:35:58 +0100 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2016-02-16 09:16:58 +0100 |
commit | 25b4caf7c50e8c501310e8c515d8518b1850c948 (patch) | |
tree | 577830d7fcc1121f19f1951667787a8f4fe04b84 | |
parent | a91bbe017552b80e12d712c85549b933a62c6ed4 (diff) |
x86/boot: Remove unused 'is_big_kernel' variable
Variable is_big_kernel is defined in arch/x86/boot/tools/build.c but
never used anywhere.
Boris noted that its usage went away 7 years ago, as of:
5e47c478b0b6 ("x86: remove zImage support")
Signed-off-by: Nicolas Iooss <[email protected]>
Reviewed-by: Borislav Petkov <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/boot/tools/build.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/boot/tools/build.c b/arch/x86/boot/tools/build.c index a7661c430cd9..0702d2531bc7 100644 --- a/arch/x86/boot/tools/build.c +++ b/arch/x86/boot/tools/build.c @@ -49,7 +49,6 @@ typedef unsigned int u32; /* This must be large enough to hold the entire setup */ u8 buf[SETUP_SECT_MAX*512]; -int is_big_kernel; #define PECOFF_RELOC_RESERVE 0x20 |