aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/thermal
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-05-08 11:36:43 +0100
committerEduardo Valentin <edubezval@gmail.com>2017-05-23 20:03:35 -0700
commitc4b379d0640a35b6c87200c3bdac0df2e6137022 (patch)
treea088f9d43053afe4103cb2d75bccce17e3ecef5e /drivers/thermal
parentthermal: qoriq: remove useless call for of_thermal_get_trip_points() (diff)
downloadlinux-dev-c4b379d0640a35b6c87200c3bdac0df2e6137022.tar.xz
linux-dev-c4b379d0640a35b6c87200c3bdac0df2e6137022.zip
thermal: core: make thermal_emergency_poweroff static
Making thermal_emergency_poweroff static fixes sparse warning: drivers/thermal/thermal_core.c:6: warning: symbol 'thermal_emergency_poweroff' was not declared. Should it be static? Fixes: ef1d87e06ab4 ("thermal: core: Add a back up thermal shutdown mechanism") Acked-by: Keerthy <j-keerthy@ti.com> Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r--drivers/thermal/thermal_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c
index b21b9cc2c8d6..5a51c740e372 100644
--- a/drivers/thermal/thermal_core.c
+++ b/drivers/thermal/thermal_core.c
@@ -359,7 +359,7 @@ static DECLARE_DELAYED_WORK(thermal_emergency_poweroff_work,
* This may be called from any critical situation to trigger a system shutdown
* after a known period of time. By default this is not scheduled.
*/
-void thermal_emergency_poweroff(void)
+static void thermal_emergency_poweroff(void)
{
int poweroff_delay_ms = CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS;
/*