]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
x86/efi: Fix config_table_type array termination
authorLeif Lindholm <leif.lindholm@linaro.org>
Thu, 3 Oct 2013 14:42:37 +0000 (15:42 +0100)
committerMatt Fleming <matt.fleming@intel.com>
Fri, 4 Oct 2013 19:04:45 +0000 (20:04 +0100)
Incorrect use of 0 in terminating entry of arch_tables[] causes the
following sparse warning,

  arch/x86/platform/efi/efi.c:74:27: sparse: Using plain integer as NULL pointer

Replace with NULL.

Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
[ Included sparse warning in commit message. ]
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
arch/x86/platform/efi/efi.c

index fbc1d70188f8fcd017c74961d335c9f50e10d0a2..1d3372ac9c660305466d09973114da0b5c194836 100644 (file)
@@ -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},
 };
 
 /*