From: Randy Dunlap Date: Mon, 16 Jul 2007 06:40:49 +0000 (-0700) Subject: sony-laptop: use NULL for pointer X-Git-Tag: v3.12-rc1~28475 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f3a740c5fb792098d7e7a24cd194a6d8c710ea94;p=kernel%2Fkernel-generic.git sony-laptop: use NULL for pointer Use NULL instead of 0 for pointer: drivers/misc/sony-laptop.c:1920:6: warning: Using plain integer as NULL pointer Signed-off-by: Randy Dunlap Acked-by: Mattia Dongili Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/misc/sony-laptop.c b/drivers/misc/sony-laptop.c index 8ee0321..9623eaf 100644 --- a/drivers/misc/sony-laptop.c +++ b/drivers/misc/sony-laptop.c @@ -1917,7 +1917,8 @@ end: */ static int sony_pic_disable(struct acpi_device *device) { - if (ACPI_FAILURE(acpi_evaluate_object(device->handle, "_DIS", 0, NULL))) + if (ACPI_FAILURE(acpi_evaluate_object(device->handle, + "_DIS", NULL, NULL))) return -ENXIO; dprintk("Device disabled\n");