diff options
author | Hannes Eder <hannes@hanneseder.net> | 2009-03-05 14:15:44 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-04-07 01:56:07 -0400 |
commit | a3c270561ea4455cbcea0ac2b53335655d9fc805 (patch) | |
tree | e9e26b0aa61861c00b53c2a7d5841a06447a9370 /drivers/platform | |
parent | d22616942804798105e61428afa41a9132421bb9 (diff) |
NULL noise: drivers/platform/x86/panasonic-laptop.c
Fix this sparse warning:
drivers/platform/x86/panasonic-laptop.c:273:70: warning: Using plain integer as NULL pointer
Signed-off-by: Hannes Eder <hannes@hanneseder.net>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/panasonic-laptop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/panasonic-laptop.c b/drivers/platform/x86/panasonic-laptop.c index a5ce4bc202e3..41cf3e794937 100644 --- a/drivers/platform/x86/panasonic-laptop.c +++ b/drivers/platform/x86/panasonic-laptop.c | |||
@@ -271,7 +271,7 @@ static int acpi_pcc_retrieve_biosdata(struct pcc_acpi *pcc, u32 *sinf) | |||
271 | union acpi_object *hkey = NULL; | 271 | union acpi_object *hkey = NULL; |
272 | int i; | 272 | int i; |
273 | 273 | ||
274 | status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SINF, 0, | 274 | status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SINF, NULL, |
275 | &buffer); | 275 | &buffer); |
276 | if (ACPI_FAILURE(status)) { | 276 | if (ACPI_FAILURE(status)) { |
277 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 277 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |