diff options
Diffstat (limited to 'arch/x86/kernel/efi.c')
-rw-r--r-- | arch/x86/kernel/efi.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c index 0a61522e85c7..2939b015c2ed 100644 --- a/arch/x86/kernel/efi.c +++ b/arch/x86/kernel/efi.c | |||
@@ -55,6 +55,13 @@ struct efi_memory_map memmap; | |||
55 | struct efi efi_phys __initdata; | 55 | struct efi efi_phys __initdata; |
56 | static efi_system_table_t efi_systab __initdata; | 56 | static efi_system_table_t efi_systab __initdata; |
57 | 57 | ||
58 | static int __init setup_noefi(char *arg) | ||
59 | { | ||
60 | efi_enabled = 0; | ||
61 | return 0; | ||
62 | } | ||
63 | early_param("noefi", setup_noefi); | ||
64 | |||
58 | static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc) | 65 | static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc) |
59 | { | 66 | { |
60 | return efi_call_virt2(get_time, tm, tc); | 67 | return efi_call_virt2(get_time, tm, tc); |