diff options
| author | Marek Vasut <[email protected]> | 2025-09-06 02:05:33 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-08 13:54:59 -0600 |
| commit | 0ee639ff5af33342c6c2f4579e210d707abc9bc2 (patch) | |
| tree | 65f143d7299bf4eb4e9de0af7aa3035ea368f16c /test | |
| parent | 79fe4655d67fb68e4172e45e8983815e26a4cd05 (diff) | |
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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reviewed-by: Quentin Schulz <[email protected]>
Reviewed-by: David Zang <[email protected]>
[trini: Update test/cmd/temperature.c]
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'test')
| -rw-r--r-- | test/cmd/temperature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmd/temperature.c b/test/cmd/temperature.c index 309693aa1e8..464d055b94d 100644 --- a/test/cmd/temperature.c +++ b/test/cmd/temperature.c @@ -27,7 +27,7 @@ static int dm_test_cmd_temperature(struct unit_test_state *uts) /* Test that "temperature get thermal" returns expected value */ console_record_reset(); ut_assertok(run_command("temperature get thermal", 0)); - ut_assert_nextline("thermal: 100 C"); + ut_assert_nextline("thermal: 100000 mC"); ut_assert_console_end(); return 0; |
