summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2013-10-06 11:24:57 +0200
committerIngo Molnar <mingo@kernel.org>2013-10-06 11:24:57 +0200
commit564c39701c8c52f2310a425223a04d175ed287c4 (patch)
treeee222f5f61f82555dd1422dcdf673dbcd6142bd4 /arch
parent0ce6cda2c75d64175394341ef60e6e1d27dd9c10 (diff)
parentc158c3bf59951bbb44bd7ccca9e6665dfd1617c5 (diff)
Merge tag 'efi-next' of git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi into x86/efi
Pull EFI updates from Matt Fleming: * Fix a recently introduced sparse warning caused by using 0 instead of NULL - Leif Lindholm * Remove a useless memset from the common EFI stub code - Roy Franz Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/platform/efi/efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c
index fbc1d70188f8..1d3372ac9c66 100644
--- a/arch/x86/platform/efi/efi.c
+++ b/arch/x86/platform/efi/efi.c
@@ -71,7 +71,7 @@ static __initdata efi_config_table_type_t arch_tables[] = {
#ifdef CONFIG_X86_UV
{UV_SYSTEM_TABLE_GUID, "UVsystab", &efi.uv_systab},
#endif
- {NULL_GUID, NULL, 0},
+ {NULL_GUID, NULL, NULL},
};
/*