diff mbox series

imx: cpu: terminate line with CR if invalid temp sensor

Message ID 1602530801-4186-1-git-send-email-tharvey@gateworks.com
State Accepted
Commit 9d41628863c9a2f34da0b8f3a19af3114f999e1c
Delegated to: Stefano Babic
Headers show
Series imx: cpu: terminate line with CR if invalid temp sensor | expand

Commit Message

Tim Harvey Oct. 12, 2020, 7:26 p.m. UTC
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(-)

Comments

Fabio Estevam Oct. 13, 2020, 1:14 p.m. UTC | #1
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>
Stefano Babic Nov. 2, 2020, 8:09 a.m. UTC | #2
> 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
diff mbox series

Patch

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