From: Kuninori Morimoto Date: Thu, 31 Jan 2013 09:26:13 +0000 (+0000) Subject: thermal: rcar: remove machine_power_off() from rcar_thermal_notify() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e6e053f4e47634c07993cb31893556d24e18b65e;p=linux-beck.git thermal: rcar: remove machine_power_off() from rcar_thermal_notify() Machine/System power-off is run in thermal frame work if it become critical temperature. This patch removed pointless machine_power_off() from thermal_zone_device_ops :: .notify Signed-off-by: Kuninori Morimoto Signed-off-by: Zhang Rui --- diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c index 80aae3cf65eb..2eebcadb4c99 100644 --- a/drivers/thermal/rcar_thermal.c +++ b/drivers/thermal/rcar_thermal.c @@ -261,7 +261,6 @@ static int rcar_thermal_notify(struct thermal_zone_device *zone, case THERMAL_TRIP_CRITICAL: /* FIXME */ dev_warn(dev, "Thermal reached to critical temperature\n"); - machine_power_off(); break; default: break;