[Skiboot] [PATCH] init: Fix trailing bracket in "Starting kernel"

Joel Stanley joel at jms.id.au
Wed May 2 14:44:49 AEST 2018


We were getting:

 [    0.047155847,5] INIT: Starting kernel at 0x0, fdt at 0x30409d70 10390 bytes)

Now it says:

 [    0.048059045,5] INIT: Starting kernel at 0x0, fdt at 0x30409d80 10406 bytes

Fixes: 293ca03683bf ("init: print the FDT blob size in decimal")
Signed-off-by: Joel Stanley <joel at jms.id.au>
---
 core/init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/init.c b/core/init.c
index 9df634c9dea1..3b887a24d11c 100644
--- a/core/init.c
+++ b/core/init.c
@@ -572,7 +572,7 @@ void __noreturn load_and_boot_kernel(bool is_reboot)
 	prlog(PR_DEBUG, "INIT: stdout-path: %s\n", stdoutp ? stdoutp : "");
 
 
-	printf("INIT: Starting kernel at 0x%llx, fdt at %p %u bytes)\n",
+	printf("INIT: Starting kernel at 0x%llx, fdt at %p %u bytes\n",
 	       kernel_entry, fdt, fdt_totalsize(fdt));
 
 	debug_descriptor.state_flags |= OPAL_BOOT_COMPLETE;
-- 
2.17.0



More information about the Skiboot mailing list