diff --git a/drivers/thermal/imx_sc_thermal.c b/drivers/thermal/imx_sc_thermal.c index ad1eb618d0..7a5dfa35a0 100644 --- a/drivers/thermal/imx_sc_thermal.c +++ b/drivers/thermal/imx_sc_thermal.c @@ -49,7 +49,7 @@ static int read_temperature(struct udevice *dev, int *temp) return -EIO; } - *temp = celsius * 1000 + tenths; + *temp = celsius * 1000 + tenths * 100; return 0; }