From: Lad, Prabhakar Date: Thu, 5 Feb 2015 14:57:44 +0000 (+0000) Subject: classmate-laptop: Fix sparse warning (0 as NULL) X-Git-Tag: v4.0-rc1~37^2~16 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2a89d7c2e9ed61f5e032e41f9bf1d9e4fe9fd2ea;p=karo-tx-linux.git classmate-laptop: Fix sparse warning (0 as NULL) Fix the following sparse warning: classmate-laptop.c:523:61: warning: Using plain integer as NULL pointer Signed-off-by: Lad, Prabhakar Acked-by: Thadeu Lima de Souza Cascardo Signed-off-by: Darren Hart --- diff --git a/drivers/platform/x86/classmate-laptop.c b/drivers/platform/x86/classmate-laptop.c index 70d355a9ae2c..55cf10bc7817 100644 --- a/drivers/platform/x86/classmate-laptop.c +++ b/drivers/platform/x86/classmate-laptop.c @@ -520,7 +520,7 @@ static acpi_status cmpc_get_accel(acpi_handle handle, { union acpi_object param[2]; struct acpi_object_list input; - struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, 0 }; + struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; unsigned char *locs; acpi_status status;