]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
thermal: remove unnecessary call to thermal_zone_device_set_polling
authorSascha Hauer <s.hauer@pengutronix.de>
Mon, 6 Jul 2015 07:46:15 +0000 (09:46 +0200)
committerZhang Rui <rui.zhang@intel.com>
Mon, 3 Aug 2015 15:15:51 +0000 (23:15 +0800)
When the thermal zone has no get_temp callback then thermal_zone_device_register()
calls thermal_zone_device_set_polling() with a polling delay of 0. This
only cancels the poll_queue. Since the poll_queue hasn't been scheduled this
is a no-op. Remove it.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Eduardo Valentin <edubezval@gmail.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/thermal_core.c

index fcd1c176c160d6ab4cb33130b9f71399abadb86a..305e381d8b0c89b51dbb5edc2e510179d2f5d370 100644 (file)
@@ -1873,9 +1873,6 @@ struct thermal_zone_device *thermal_zone_device_register(const char *type,
 
        INIT_DELAYED_WORK(&(tz->poll_queue), thermal_zone_device_check);
 
-       if (!tz->ops->get_temp)
-               thermal_zone_device_set_polling(tz, 0);
-
        thermal_zone_device_update(tz);
 
        return tz;