From 941ea72bf0b351cb78c36f703df08c9d4b7b80e6 Mon Sep 17 00:00:00 2001 From: Hyeonseong Gil Date: Fri, 23 Mar 2018 16:50:37 +0900 Subject: [PATCH] [COMMON] thermal: isp_cooling: match enum type Change-Id: I2ab0d7d554167d7d3cfcf4d60fc23f69fee306e4 Signed-off-by: Hyeonseong Gil --- drivers/thermal/isp_cooling.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.20.1