[PATCH 01/15] thermal: consistently use int for temperatures
From: Mikko Perttunen <hidden>
Date: 2015-05-20 07:13:10
Also in:
linux-mediatek, linux-pm, lkml
From: Mikko Perttunen <hidden>
Date: 2015-05-20 07:13:10
Also in:
linux-mediatek, linux-pm, lkml
On 05/13/15 11:52, Sascha Hauer wrote:
The thermal code uses int, long and unsigned long for temperatures in different places. Using an unsigned type limits the thermal framework to positive temperatures without need. 'long' is 64bit on several architectures which is not needed. Consistently use a plain 'int' for temperatures. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> --- ...
It looks like some longs remain in db8500_thermal.c, int340x_thermal/*, intel_soc_dts_thermal.c, kirkwood_thermal.c, rockchip_thermal.c and samsung/exynos_tmu.c. (found by 'grep -R long drivers/thermal/*) Cheers, Mikko.