drivers: thermal: silence enum-conversion warnings
authorMichael Benedict <michaelbt@live.com>
Mon, 3 Jun 2019 11:28:29 +0000 (21:28 +1000)
committerMichael Benedict <michaelbt@live.com>
Sat, 31 Aug 2019 15:08:54 +0000 (01:08 +1000)
Signed-off-by: Michael Benedict <michaelbt@live.com>
drivers/thermal/isp_cooling.c

index e8b2227082a61dd2b6c3ef6afa7c5fdf4ecf1d5c..ec3e4a7be3e988fc8a7bf6945fc832f1ec161f58 100644 (file)
@@ -327,12 +327,12 @@ static int isp_set_cur_state(struct thermal_cooling_device *cdev,
        return isp_apply_cooling(isp_device, state);
 }
 
-static enum tmu_noti_state_t isp_tstate = ISP_COLD;
+static enum isp_noti_state_t isp_tstate = ISP_COLD;
 
 static int isp_set_cur_temp(struct thermal_cooling_device *cdev,
                                bool suspended, int temp)
 {
-       enum tmu_noti_state_t tstate;
+       enum isp_noti_state_t tstate;
 
        if (suspended || temp < EXYNOS_COLD_TEMP)
                tstate = ISP_COLD;