public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] imx: cpu: terminate line with CR if invalid temp sensor
@ 2020-10-12 19:26 Tim Harvey
  2020-10-13 13:14 ` Fabio Estevam
  2020-11-02  8:09 ` sbabic at denx.de
  0 siblings, 2 replies; 3+ messages in thread
From: Tim Harvey @ 2020-10-12 19:26 UTC (permalink / raw)
  To: u-boot

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());
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-02  8:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-12 19:26 [PATCH] imx: cpu: terminate line with CR if invalid temp sensor Tim Harvey
2020-10-13 13:14 ` Fabio Estevam
2020-11-02  8:09 ` sbabic at denx.de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox