diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2015-02-19 02:34:58 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-02-19 04:05:04 -0500 |
commit | fb148d83ec6924b7766731e58739d7281b6fb8c7 (patch) | |
tree | dd051830459b83affde9dee23ef27eda38786426 /arch/x86/boot | |
parent | 0cdb81bef20b1d9e12111fa6cd81f748ebd87778 (diff) |
x86/asm/boot: Use already defined KEEP_SEGMENTS macro in head_{32,64}.S
There is already defined macro KEEP_SEGMENTS in
<asm/bootparam.h>, let's use it instead of hardcoded
constants.
Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1424331298-7456-1-git-send-email-kuleshovmail@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/boot')
-rw-r--r-- | arch/x86/boot/compressed/head_32.S | 3 | ||||
-rw-r--r-- | arch/x86/boot/compressed/head_64.S | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86/boot/compressed/head_32.S b/arch/x86/boot/compressed/head_32.S index 1d7fbbcc196d..8ef964ddc18e 100644 --- a/arch/x86/boot/compressed/head_32.S +++ b/arch/x86/boot/compressed/head_32.S | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <asm/page_types.h> | 29 | #include <asm/page_types.h> |
30 | #include <asm/boot.h> | 30 | #include <asm/boot.h> |
31 | #include <asm/asm-offsets.h> | 31 | #include <asm/asm-offsets.h> |
32 | #include <asm/bootparam.h> | ||
32 | 33 | ||
33 | __HEAD | 34 | __HEAD |
34 | ENTRY(startup_32) | 35 | ENTRY(startup_32) |
@@ -102,7 +103,7 @@ preferred_addr: | |||
102 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking | 103 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking |
103 | * us to not reload segments | 104 | * us to not reload segments |
104 | */ | 105 | */ |
105 | testb $(1<<6), BP_loadflags(%esi) | 106 | testb $KEEP_SEGMENTS, BP_loadflags(%esi) |
106 | jnz 1f | 107 | jnz 1f |
107 | 108 | ||
108 | cli | 109 | cli |
diff --git a/arch/x86/boot/compressed/head_64.S b/arch/x86/boot/compressed/head_64.S index 6b1766c6c082..90c152135e92 100644 --- a/arch/x86/boot/compressed/head_64.S +++ b/arch/x86/boot/compressed/head_64.S | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <asm/msr.h> | 31 | #include <asm/msr.h> |
32 | #include <asm/processor-flags.h> | 32 | #include <asm/processor-flags.h> |
33 | #include <asm/asm-offsets.h> | 33 | #include <asm/asm-offsets.h> |
34 | #include <asm/bootparam.h> | ||
34 | 35 | ||
35 | __HEAD | 36 | __HEAD |
36 | .code32 | 37 | .code32 |
@@ -46,7 +47,7 @@ ENTRY(startup_32) | |||
46 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking | 47 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking |
47 | * us to not reload segments | 48 | * us to not reload segments |
48 | */ | 49 | */ |
49 | testb $(1<<6), BP_loadflags(%esi) | 50 | testb $KEEP_SEGMENTS, BP_loadflags(%esi) |
50 | jnz 1f | 51 | jnz 1f |
51 | 52 | ||
52 | cli | 53 | cli |