x86/platform/UV: Remove unnecessary #ifdef CONFIG_EFI
authorHedi Berriche <hedi.berriche@hpe.com>
Wed, 13 Feb 2019 19:34:10 +0000 (19:34 +0000)
committerBorislav Petkov <bp@suse.de>
Fri, 15 Feb 2019 14:05:15 +0000 (15:05 +0100)
CONFIG_EFI is implied by CONFIG_X86_UV and x86/platform/uv/bios_uv.c
requires the latter, get rid of the redundant #ifdef CONFIG_EFI
directives.

Cleanup, no functional changes.

Signed-off-by: Hedi Berriche <hedi.berriche@hpe.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Russ Anderson <rja@hpe.com>
Reviewed-by: Dimitri Sivanich <sivanich@hpe.com>
Reviewed-by: Mike Travis <mike.travis@hpe.com>
Cc: Andy Shevchenko <andy@infradead.org>
Cc: Bhupesh Sharma <bhsharma@redhat.com>
Cc: Darren Hart <dvhart@infradead.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: linux-efi <linux-efi@vger.kernel.org>
Cc: platform-driver-x86@vger.kernel.org
Cc: Steve Wahl <steve.wahl@hpe.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: x86-ml <x86@kernel.org>
Link: https://lkml.kernel.org/r/20190213193413.25560-2-hedi.berriche@hpe.com
arch/x86/include/asm/uv/bios.h
arch/x86/platform/uv/bios_uv.c

index e652a7cc61863667fad8ff2baa0a7242485600df..00d862cfbcbe08f9cbb18b90064a4a114899ffa3 100644 (file)
@@ -151,11 +151,7 @@ extern s64 uv_bios_change_memprotect(u64, u64, enum uv_memprotect);
 extern s64 uv_bios_reserved_page_pa(u64, u64 *, u64 *, u64 *);
 extern int uv_bios_set_legacy_vga_target(bool decode, int domain, int bus);
 
-#ifdef CONFIG_EFI
 extern void uv_bios_init(void);
-#else
-void uv_bios_init(void) { }
-#endif
 
 extern unsigned long sn_rtc_cycles_per_second;
 extern int uv_type;
index 4a6a5a26c58295e4245b09be21a658c3ddae86a2..4a61ed2a7bb8f789e02894e69795cce85dce6caa 100644 (file)
@@ -188,7 +188,6 @@ int uv_bios_set_legacy_vga_target(bool decode, int domain, int bus)
 }
 EXPORT_SYMBOL_GPL(uv_bios_set_legacy_vga_target);
 
-#ifdef CONFIG_EFI
 void uv_bios_init(void)
 {
        uv_systab = NULL;
@@ -218,4 +217,3 @@ void uv_bios_init(void)
        }
        pr_info("UV: UVsystab: Revision:%x\n", uv_systab->revision);
 }
-#endif