diff options
| author | David Zang <[email protected]> | 2025-07-11 19:12:54 -0500 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-07-17 09:57:55 -0300 |
| commit | c71ea4b9a40d6e1217228e3b1abd4765496130bc (patch) | |
| tree | ad71bff35ff7f0a48d91f5830524cac98d97b5e2 | |
| parent | d4a9ce26cb6d4782e0f28842e4f037afe1f9e65d (diff) | |
soc: imx8ulp: Add celsius unit for temperature
Make temperature unit (celsius) more clear to reduce confusion.
Signed-off-by: David Zang <[email protected]>
| -rw-r--r-- | arch/arm/mach-imx/imx8ulp/soc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/imx8ulp/soc.c b/arch/arm/mach-imx/imx8ulp/soc.c index 8fe70e2424f..e85cb0dd252 100644 --- a/arch/arm/mach-imx/imx8ulp/soc.c +++ b/arch/arm/mach-imx/imx8ulp/soc.c @@ -279,7 +279,7 @@ int print_cpuinfo(void) if (!ret) { ret = thermal_get_temp(udev, &temp); if (!ret) - printf("CPU current temperature: %d\n", temp); + printf("CPU current temperature: %dC\n", temp); else debug(" - failed to get CPU current temperature\n"); } else { |
