diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-03-27 01:38:49 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-03-28 23:31:43 -0400 |
commit | 62a6d7fd9bc1d85f9aae734c46234e88fa839db0 (patch) | |
tree | 7f10e852ab1be04b45d39ffb056b16f1b97a4810 | |
parent | ac122bb64b0d51f0512185d3522a75f3f3a80bc9 (diff) |
ACPI: dock: use NULL for pointer
Use NULL instead of 0 for pointers:
drivers/acpi/dock.c:677:75: warning: Using plain integer as NULL pointer
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/dock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c index 811b1aac65d5..4546bf873aea 100644 --- a/drivers/acpi/dock.c +++ b/drivers/acpi/dock.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/notifier.h> | 29 | #include <linux/notifier.h> |
30 | #include <linux/platform_device.h> | 30 | #include <linux/platform_device.h> |
31 | #include <linux/jiffies.h> | 31 | #include <linux/jiffies.h> |
32 | #include <linux/stddef.h> | ||
32 | #include <acpi/acpi_bus.h> | 33 | #include <acpi/acpi_bus.h> |
33 | #include <acpi/acpi_drivers.h> | 34 | #include <acpi/acpi_drivers.h> |
34 | 35 | ||
@@ -674,7 +675,7 @@ static ssize_t show_dock_uid(struct device *dev, | |||
674 | struct device_attribute *attr, char *buf) | 675 | struct device_attribute *attr, char *buf) |
675 | { | 676 | { |
676 | unsigned long lbuf; | 677 | unsigned long lbuf; |
677 | acpi_status status = acpi_evaluate_integer(dock_station->handle, "_UID", 0, &lbuf); | 678 | acpi_status status = acpi_evaluate_integer(dock_station->handle, "_UID", NULL, &lbuf); |
678 | if(ACPI_FAILURE(status)) { | 679 | if(ACPI_FAILURE(status)) { |
679 | return 0; | 680 | return 0; |
680 | } | 681 | } |