aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authorSatoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>2013-02-13 19:07:35 -0500
committerMatt Fleming <matt.fleming@intel.com>2013-02-14 05:36:18 -0500
commit6b59e366e074d3962e04f01efb8acc10a33c0e1e (patch)
tree0cc0f5de6582ee866c249deed2afd8fa6dee1407 /arch/x86/kernel
parentda27a24383b2b10bf6ebd0db29b325548aafecb4 (diff)
x86, efi: remove duplicate code in setup_arch() by using, efi_is_native()
The check, "IS_ENABLED(CONFIG_X86_64) != efi_enabled(EFI_64BIT)", in setup_arch() can be replaced by efi_is_enabled(). This change remove duplicate code and improve readability. Signed-off-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Olof Johansson <olof@lixom.net> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/setup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 8b24289cc10c..1abb7969173a 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -1135,8 +1135,7 @@ void __init setup_arch(char **cmdline_p)
1135 * mismatched firmware/kernel archtectures since there is no 1135 * mismatched firmware/kernel archtectures since there is no
1136 * support for runtime services. 1136 * support for runtime services.
1137 */ 1137 */
1138 if (efi_enabled(EFI_BOOT) && 1138 if (efi_enabled(EFI_BOOT) && !efi_is_native()) {
1139 IS_ENABLED(CONFIG_X86_64) != efi_enabled(EFI_64BIT)) {
1140 pr_info("efi: Setup done, disabling due to 32/64-bit mismatch\n"); 1139 pr_info("efi: Setup done, disabling due to 32/64-bit mismatch\n");
1141 efi_unmap_memmap(); 1140 efi_unmap_memmap();
1142 } 1141 }