Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 24237c43 authored by Marek Vasut's avatar Marek Vasut Committed by Matthew Garrett
Browse files

ACER: Fix up sparse warning



drivers/platform/x86/acer-wmi.c:1836:18: sparse: Using plain integer as NULL pointer

drivers/platform/x86/acer-wmi.c:1836:
  1833
  1834          BUG_ON(!name || !ah);
  1835
> 1836          handle = 0;
  1837          status = acpi_get_devices(prop, acer_wmi_get_handle_cb,
  1838                                          (void *)name, &handle);
  1839

Reported-by: default avatarFengguang Wu <wfg@linux.intel.com>

Signed-off-by: default avatarMarek Vasut <marex@denx.de>
Cc: Matthew Garrett <mjg59@srcf.ucam.org>
Cc: Fengguang Wu <wfg@linux.intel.com>
Cc: joeyli <jlee@suse.com>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent 3766054f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1833,7 +1833,7 @@ static int __init acer_wmi_get_handle(const char *name, const char *prop,

	BUG_ON(!name || !ah);

	handle = 0;
	handle = NULL;
	status = acpi_get_devices(prop, acer_wmi_get_handle_cb,
					(void *)name, &handle);