[PATCH] imx: cpu: terminate line with CR if invalid temp sensor

Ensure we terminate the line with a CR if we get an invalid sensor device or reading.
Signed-off-by: Tim Harvey tharvey@gateworks.com --- arch/arm/mach-imx/cpu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index 4a175cb..a4d8f10 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());

Hi Tim,
On Mon, Oct 12, 2020 at 4:26 PM Tim Harvey tharvey@gateworks.com wrote:
Ensure we terminate the line with a CR if we get an invalid sensor device or reading.
Signed-off-by: Tim Harvey tharvey@gateworks.com
Thanks for the fix:
Reviewed-by: Fabio Estevam festevam@gmail.com

Ensure we terminate the line with a CR if we get an invalid sensor device or reading. Signed-off-by: Tim Harvey tharvey@gateworks.com Reviewed-by: Fabio Estevam festevam@gmail.com
Applied to u-boot-imx, master, thanks !
Best regards, Stefano Babic
participants (3)
-
Fabio Estevam
-
sbabic@denx.de
-
Tim Harvey