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

Commit 85eb9827 authored by Naresh Bhat's avatar Naresh Bhat Committed by Rafael J. Wysocki
Browse files

ACPI / fan: Initialize acpi_state variable



Make the following compiler warning go away:

 CC      drivers/acpi/fan.o
drivers/acpi/fan.c: In function ‘fan_get_cur_state’:
drivers/acpi/fan.c:96:9: warning: ‘acpi_state’ may be used uninitialized in this function [-Wuninitialized]

by initializing the local variable acpi_state in fan_get_cur_state().

[rjw: Changelog]
Signed-off-by: default avatarNaresh Bhat <naresh.bhat@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent b67cf7c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -84,7 +84,7 @@ static int fan_get_cur_state(struct thermal_cooling_device *cdev, unsigned long
{
{
	struct acpi_device *device = cdev->devdata;
	struct acpi_device *device = cdev->devdata;
	int result;
	int result;
	int acpi_state;
	int acpi_state = ACPI_STATE_D0;


	if (!device)
	if (!device)
		return -EINVAL;
		return -EINVAL;