diff options
author | Daeseok Youn <daeseok.youn@gmail.com> | 2014-02-13 03:16:36 -0500 |
---|---|---|
committer | Matt Fleming <matt.fleming@intel.com> | 2014-03-04 11:17:20 -0500 |
commit | 69e608411473ac56358ef35277563982d0565381 (patch) | |
tree | bdc2733b8a1869aaac65e542df8051bb46a76109 /drivers/firmware/efi | |
parent | 092063808c498eccac8e891973bf143e7b60d723 (diff) |
efi: Use NULL instead of 0 for pointer
Fix following sparse warnings:
drivers/firmware/efi/efivars.c:230:66: warning:
Using plain integer as NULL pointer
drivers/firmware/efi/efi.c:236:27: warning:
Using plain integer as NULL pointer
Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'drivers/firmware/efi')
-rw-r--r-- | drivers/firmware/efi/efi.c | 2 | ||||
-rw-r--r-- | drivers/firmware/efi/efivars.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c index b25b36b1ef23..af20f1712337 100644 --- a/drivers/firmware/efi/efi.c +++ b/drivers/firmware/efi/efi.c | |||
@@ -233,7 +233,7 @@ static __initdata efi_config_table_type_t common_tables[] = { | |||
233 | {SAL_SYSTEM_TABLE_GUID, "SALsystab", &efi.sal_systab}, | 233 | {SAL_SYSTEM_TABLE_GUID, "SALsystab", &efi.sal_systab}, |
234 | {SMBIOS_TABLE_GUID, "SMBIOS", &efi.smbios}, | 234 | {SMBIOS_TABLE_GUID, "SMBIOS", &efi.smbios}, |
235 | {UGA_IO_PROTOCOL_GUID, "UGA", &efi.uga}, | 235 | {UGA_IO_PROTOCOL_GUID, "UGA", &efi.uga}, |
236 | {NULL_GUID, NULL, 0}, | 236 | {NULL_GUID, NULL, NULL}, |
237 | }; | 237 | }; |
238 | 238 | ||
239 | static __init int match_config_table(efi_guid_t *guid, | 239 | static __init int match_config_table(efi_guid_t *guid, |
diff --git a/drivers/firmware/efi/efivars.c b/drivers/firmware/efi/efivars.c index 3dc248239197..50ea412a25e6 100644 --- a/drivers/firmware/efi/efivars.c +++ b/drivers/firmware/efi/efivars.c | |||
@@ -227,7 +227,7 @@ efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count) | |||
227 | memcpy(&entry->var, new_var, count); | 227 | memcpy(&entry->var, new_var, count); |
228 | 228 | ||
229 | err = efivar_entry_set(entry, new_var->Attributes, | 229 | err = efivar_entry_set(entry, new_var->Attributes, |
230 | new_var->DataSize, new_var->Data, false); | 230 | new_var->DataSize, new_var->Data, NULL); |
231 | if (err) { | 231 | if (err) { |
232 | printk(KERN_WARNING "efivars: set_variable() failed: status=%d\n", err); | 232 | printk(KERN_WARNING "efivars: set_variable() failed: status=%d\n", err); |
233 | return -EIO; | 233 | return -EIO; |