summaryrefslogtreecommitdiff
path: root/arch/x86/platform
diff options
context:
space:
mode:
authorsteve.wahl@hpe.com <steve.wahl@hpe.com>2020-07-13 16:30:03 -0500
committerThomas Gleixner <tglx@linutronix.de>2020-07-17 16:47:46 +0200
commit3dad716240f95c3e6114965b8ea95018ef1b04c9 (patch)
tree5f4ce0fc9cd74febc9b14d5f78942ad2f36bfca5 /arch/x86/platform
parent5d662537510e09512e842b41352f8ad0427c1fe9 (diff)
x86/platform/uv: Remove efi=old_map command line option
As a part of UV1 platform removal, delete the efi=old_map option, which is not longer needed. Signed-off-by: Steve Wahl <steve.wahl@hpe.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Ard Biesheuvel <ardb@kernel.org> Link: https://lkml.kernel.org/r/20200713212955.552098718@hpe.com
Diffstat (limited to 'arch/x86/platform')
-rw-r--r--arch/x86/platform/uv/bios_uv.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/x86/platform/uv/bios_uv.c b/arch/x86/platform/uv/bios_uv.c
index 4494589a288a..cd2a6e2537f6 100644
--- a/arch/x86/platform/uv/bios_uv.c
+++ b/arch/x86/platform/uv/bios_uv.c
@@ -356,17 +356,3 @@ void __iomem *__init efi_ioremap(unsigned long phys_addr, unsigned long size,
return (void __iomem *)__va(phys_addr);
}
-
-static int __init arch_parse_efi_cmdline(char *str)
-{
- if (!str) {
- pr_warn("need at least one option\n");
- return -EINVAL;
- }
-
- if (!efi_is_mixed() && parse_option_str(str, "old_map"))
- set_bit(EFI_UV1_MEMMAP, &efi.flags);
-
- return 0;
-}
-early_param("efi", arch_parse_efi_cmdline);