[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1508432760-17847-11-git-send-email-daniel.lezcano@linaro.org>
Date: Thu, 19 Oct 2017 19:05:53 +0200
From: Daniel Lezcano <daniel.lezcano@...aro.org>
To: edubezval@...il.com, rui.zhang@...el.com
Cc: linux-pm@...r.kernel.org, leo.yan@...aro.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 11/18] thermal/drivers/hisi: Convert long to int
There is no point to specify the temperature as long variable, the int is
enough.
Replace all long variables to int, so making the code consistent.
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
Reviewed-by: Leo Yan <leo.yan@...aro.org>
---
drivers/thermal/hisi_thermal.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/thermal/hisi_thermal.c b/drivers/thermal/hisi_thermal.c
index baa3853..5382073 100644
--- a/drivers/thermal/hisi_thermal.c
+++ b/drivers/thermal/hisi_thermal.c
@@ -85,12 +85,12 @@ static inline int hisi_thermal_step_to_temp(int step)
return HISI_TEMP_BASE + (step * HISI_TEMP_STEP);
}
-static inline long hisi_thermal_temp_to_step(long temp)
+static inline int hisi_thermal_temp_to_step(int temp)
{
return (temp - HISI_TEMP_BASE) / HISI_TEMP_STEP;
}
-static inline long hisi_thermal_round_temp(int temp)
+static inline int hisi_thermal_round_temp(int temp)
{
return hisi_thermal_step_to_temp(
hisi_thermal_temp_to_step(temp));
--
2.7.4
Powered by blists - more mailing lists