Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=62a6d7fd9bc1d85f9aae734c46234e88fa839db0
Commit:     62a6d7fd9bc1d85f9aae734c46234e88fa839db0
Parent:     ac122bb64b0d51f0512185d3522a75f3f3a80bc9
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Mon Mar 26 21:38:49 2007 -0800
Committer:  Len Brown <[EMAIL PROTECTED]>
CommitDate: Wed Mar 28 23:31:43 2007 -0400

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Len Brown <[EMAIL PROTECTED]>
---
 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 811b1aa..4546bf8 100644
--- a/drivers/acpi/dock.c
+++ b/drivers/acpi/dock.c
@@ -29,6 +29,7 @@
 #include <linux/notifier.h>
 #include <linux/platform_device.h>
 #include <linux/jiffies.h>
+#include <linux/stddef.h>
 #include <acpi/acpi_bus.h>
 #include <acpi/acpi_drivers.h>
 
@@ -674,7 +675,7 @@ static ssize_t show_dock_uid(struct device *dev,
                             struct device_attribute *attr, char *buf)
 {
        unsigned long lbuf;
-       acpi_status status = acpi_evaluate_integer(dock_station->handle, 
"_UID", 0, &lbuf);
+       acpi_status status = acpi_evaluate_integer(dock_station->handle, 
"_UID", NULL, &lbuf);
        if(ACPI_FAILURE(status)) {
            return 0;
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to