diff options
author | Anson Huang <[email protected]> | 2020-03-19 16:26:20 +0800 |
---|---|---|
committer | Daniel Lezcano <[email protected]> | 2020-03-23 15:20:47 +0100 |
commit | 968ea0dffa9396e9f8e00f12fd69be95f5a09191 (patch) | |
tree | 742228d1291dfa8dd2e7225601a8f352da1f92f8 | |
parent | f21431f2de33b1bb99064e57d3ccaa772b92f333 (diff) |
thermal: imx_sc_thermal: Fix incorrect data type
The temperature value passed from SCU could be negative value,
the data type should be signed instead of unsigned.
Fixes: e20db70dba1c ("thermal: imx_sc: add i.MX system controller thermal support")
Signed-off-by: Anson Huang <[email protected]>
Reviewed-by: Amit Kucheria <[email protected]>
Signed-off-by: Daniel Lezcano <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | drivers/thermal/imx_sc_thermal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/thermal/imx_sc_thermal.c b/drivers/thermal/imx_sc_thermal.c index dbb277af232d..a8723b1eb8b0 100644 --- a/drivers/thermal/imx_sc_thermal.c +++ b/drivers/thermal/imx_sc_thermal.c @@ -30,8 +30,8 @@ struct req_get_temp { } __packed __aligned(4); struct resp_get_temp { - u16 celsius; - u8 tenths; + s16 celsius; + s8 tenths; } __packed __aligned(4); struct imx_sc_msg_misc_get_temp { |