From: Hyeonseong Gil Date: Fri, 23 Mar 2018 07:50:37 +0000 (+0900) Subject: [COMMON] thermal: isp_cooling: match enum type X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=941ea72bf0b351cb78c36f703df08c9d4b7b80e6;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [COMMON] thermal: isp_cooling: match enum type Change-Id: I2ab0d7d554167d7d3cfcf4d60fc23f69fee306e4 Signed-off-by: Hyeonseong Gil --- diff --git a/drivers/thermal/isp_cooling.c b/drivers/thermal/isp_cooling.c index 7978fcd72b11..a0d2754977a0 100644 --- a/drivers/thermal/isp_cooling.c +++ b/drivers/thermal/isp_cooling.c @@ -333,12 +333,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;