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
This commit is contained in:
parent
5d66253751
commit
3dad716240
|
@ -356,17 +356,3 @@ void __iomem *__init efi_ioremap(unsigned long phys_addr, unsigned long size,
|
||||||
|
|
||||||
return (void __iomem *)__va(phys_addr);
|
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);
|
|
||||||
|
|
Loading…
Reference in New Issue