diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-02-13 19:11:36 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-02-15 22:19:07 -0500 |
commit | 70c0846e430881967776582e13aefb81407919f1 (patch) | |
tree | 339051da147f7f08b1bbc1f3f7eb9b7185a23c02 /drivers/acpi/tables | |
parent | f3ccb06f3b8e0cf42b579db21f3ca7f17fcc3f38 (diff) |
ACPI: Fix sparse warnings
Use NULL for pointers
drivers/acpi/osl.c:208:10: warning: Using plain integer as NULL pointer
drivers/acpi/tables/tbxface.c:411:49: warning: Using plain integer as NULL pointer
drivers/acpi/processor_core.c:1008:10: warning: Using plain integer as NULL pointer
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/tables')
-rw-r--r-- | drivers/acpi/tables/tbxface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/tables/tbxface.c b/drivers/acpi/tables/tbxface.c index 807978d5381a..81937003fd53 100644 --- a/drivers/acpi/tables/tbxface.c +++ b/drivers/acpi/tables/tbxface.c | |||
@@ -408,7 +408,7 @@ acpi_get_table(char *signature, | |||
408 | } | 408 | } |
409 | 409 | ||
410 | if (!acpi_gbl_permanent_mmap) { | 410 | if (!acpi_gbl_permanent_mmap) { |
411 | acpi_gbl_root_table_list.tables[i].pointer = 0; | 411 | acpi_gbl_root_table_list.tables[i].pointer = NULL; |
412 | } | 412 | } |
413 | 413 | ||
414 | return (status); | 414 | return (status); |