Commit c499703e authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Zhang Rui

thermal: rcar: fixup the unit of temperature

The unit of temperature is Milli-Celsius.
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarZhang Rui <rui.zhang@intel.com>
parent 4ba115b1
......@@ -43,6 +43,8 @@ struct rcar_thermal_priv {
u32 comp;
};
#define MCELSIUS(temp) ((temp) * 1000)
/*
* basic functions
*/
......@@ -169,7 +171,7 @@ static int rcar_thermal_get_temp(struct thermal_zone_device *zone,
}
}
*temp = tmp;
*temp = MCELSIUS(tmp);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment