git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d4a9ce2
)
soc: imx8ulp: Add celsius unit for temperature
author
David Zang
<davidzangcs@gmail.com>
Sat, 12 Jul 2025 00:12:54 +0000
(19:12 -0500)
committer
Fabio Estevam
<festevam@gmail.com>
Thu, 17 Jul 2025 12:57:55 +0000
(09:57 -0300)
Make temperature unit (celsius) more clear to reduce confusion.
Signed-off-by: David Zang <davidzangcs@gmail.com>
arch/arm/mach-imx/imx8ulp/soc.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-imx/imx8ulp/soc.c
b/arch/arm/mach-imx/imx8ulp/soc.c
index
8fe70e2
..
e85cb0d
100644
(file)
--- 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: %d
C
\n", temp);
else
debug(" - failed to get CPU current temperature\n");
} else {