diff options
author | Tom Rini <trini@konsulko.com> | 2020-11-05 11:57:50 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-11-05 11:57:50 -0500 |
commit | 7716c328c843d4365c9fe2703e66a7aeee557dfa (patch) | |
tree | 9c5e71617f5dfa53de3bca87c660b1554047766d /arch/arm/mach-imx/cpu.c | |
parent | 35b7ca768f7d826b77d5d3d6ccd6b1b8ed21f186 (diff) | |
parent | b431970e7f0ce5b83fae1502eddc3568115207ad (diff) |
Merge tag 'u-boot-imx-20201105' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
u-boot-imx for 2021.1
---------------------
- new boards : GE (new B1x5v2), phytec phyCORE-i.MX8MM
- converted doc to reST
- fixes for verdin-imx8mm (Toradex)
- fixes for i.MX thermal driver
- mx7ulp: Align the PLL_USB frequency
- mx53: primary/secondary bmode
Travis: https://travis-ci.org/github/sbabic/u-boot-imx/builds/741465284
Diffstat (limited to 'arch/arm/mach-imx/cpu.c')
-rw-r--r-- | arch/arm/mach-imx/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index 4a175cb86f4..a4d8f101b66 100644 --- a/arch/arm/mach-imx/cpu.c +++ b/arch/arm/mach-imx/cpu.c @@ -223,12 +223,13 @@ int print_cpuinfo(void) ret = thermal_get_temp(thermal_dev, &cpu_tmp); if (!ret) - printf(" at %dC\n", cpu_tmp); + printf(" at %dC", cpu_tmp); else debug(" - invalid sensor data\n"); } else { debug(" - invalid sensor device\n"); } + puts("\n"); #endif printf("Reset cause: %s\n", get_reset_cause()); |