efi.c (5828efb95bc43ad6a59f05458d3aed9649dd5a63) efi.c (1c5fecb61255aa12a16c4c06335ab68979865914)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Common EFI (Extensible Firmware Interface) support functions
4 * Based on Extensible Firmware Interface Specification version 1.0
5 *
6 * Copyright (C) 1999 VA Linux Systems
7 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
8 * Copyright (C) 1999-2002 Hewlett-Packard Co.

--- 68 unchanged lines hidden (view full) ---

77 &uv_systab_phys,
78#endif
79 &efi.fw_vendor,
80 &efi.runtime,
81 &efi.config_table,
82 &efi.esrt,
83 &efi.properties_table,
84 &efi.mem_attr_table,
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Common EFI (Extensible Firmware Interface) support functions
4 * Based on Extensible Firmware Interface Specification version 1.0
5 *
6 * Copyright (C) 1999 VA Linux Systems
7 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
8 * Copyright (C) 1999-2002 Hewlett-Packard Co.

--- 68 unchanged lines hidden (view full) ---

77 &uv_systab_phys,
78#endif
79 &efi.fw_vendor,
80 &efi.runtime,
81 &efi.config_table,
82 &efi.esrt,
83 &efi.properties_table,
84 &efi.mem_attr_table,
85#ifdef CONFIG_EFI_RCI2_TABLE
86 &rci2_table_phys,
87#endif
85};
86
87u64 efi_setup; /* efi setup_data physical address */
88
89static int add_efi_memmap __initdata;
90static int __init setup_add_efi_memmap(char *arg)
91{
92 add_efi_memmap = 1;

--- 993 unchanged lines hidden ---
88};
89
90u64 efi_setup; /* efi setup_data physical address */
91
92static int add_efi_memmap __initdata;
93static int __init setup_add_efi_memmap(char *arg)
94{
95 add_efi_memmap = 1;

--- 993 unchanged lines hidden ---