From 0ee639ff5af33342c6c2f4579e210d707abc9bc2 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 6 Sep 2025 02:05:33 +0200 Subject: thermal: Convert .get_temp() return value to millicelsius Linux kernel .get_temp() callback reports values in millicelsius, U-Boot currently reports them in celsius. Align the two and report in millicelsius. Update drivers accordingly. Update callsites that use thermal_get_temp() as well. The 'temperature' command now reports temperature in millicelsius as well, with additional accuracy. This changes command line ABI slightly. Signed-off-by: Marek Vasut Reviewed-by: Tom Rini Reviewed-by: Quentin Schulz Reviewed-by: David Zang [trini: Update test/cmd/temperature.c] Signed-off-by: Tom Rini --- cmd/temperature.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/temperature.c b/cmd/temperature.c index 41e422fc937..c145d019364 100644 --- a/cmd/temperature.c +++ b/cmd/temperature.c @@ -32,7 +32,7 @@ static int do_get(struct cmd_tbl *cmdtp, int flag, int argc, if (ret) return CMD_RET_FAILURE; - printf("%s: %d C\n", dev->name, temp); + printf("%s: %d mC\n", dev->name, temp); return CMD_RET_SUCCESS; } -- cgit v1.3.1