Commit 7a7d66f2 authored by Andrzej Pietrasiewicz's avatar Andrzej Pietrasiewicz Committed by Daniel Lezcano
Browse files

acpi: thermal: Don't call thermal_zone_device_is_enabled()



thermal_zone_device_update() can now handle disabled thermal zones, so
the check here is not needed.

Signed-off-by: default avatarAndrzej Pietrasiewicz <andrzej.p@collabora.com>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20200703104354.19657-2-andrzej.p@collabora.com
parent f5e50bf4
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -499,9 +499,6 @@ static void acpi_thermal_check(void *data)
{
	struct acpi_thermal *tz = data;

	if (!thermal_zone_device_is_enabled(tz->thermal_zone))
		return;

	thermal_zone_device_update(tz->thermal_zone,
				   THERMAL_EVENT_UNSPECIFIED);
}