aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/kernel/efi.c
diff options
context:
space:
mode:
authorLeif Lindholm <leif.lindholm@linaro.org>2015-08-26 09:24:58 -0400
committerMatt Fleming <matt.fleming@intel.com>2015-10-12 09:20:06 -0400
commit7968c0e338085eba0ee2f0e0b0d833057a966679 (patch)
tree434a119b00d59f09e3efc1b3b9ed279e8fdde87f /arch/arm64/kernel/efi.c
parentc9494dc818755f2dd934c93faa933317fae51594 (diff)
efi/arm64: Clean up efi_get_fdt_params() interface
As we now have a common debug infrastructure between core and arm64 efi, drop the bit of the interface passing verbose output flags around. Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org> Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Tested-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Cc: Mark Salter <msalter@redhat.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will.deacon@arm.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'arch/arm64/kernel/efi.c')
-rw-r--r--arch/arm64/kernel/efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/efi.c b/arch/arm64/kernel/efi.c
index 612ad5ec1d2e..ab5eeb63e2ca 100644
--- a/arch/arm64/kernel/efi.c
+++ b/arch/arm64/kernel/efi.c
@@ -201,7 +201,7 @@ void __init efi_init(void)
201 struct efi_fdt_params params; 201 struct efi_fdt_params params;
202 202
203 /* Grab UEFI information placed in FDT by stub */ 203 /* Grab UEFI information placed in FDT by stub */
204 if (!efi_get_fdt_params(&params, efi_enabled(EFI_DBG))) 204 if (!efi_get_fdt_params(&params))
205 return; 205 return;
206 206
207 efi_system_table = params.system_table; 207 efi_system_table = params.system_table;