From 1d724fa588bc5bd05eed92690f73653a49207fb6 Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Wed, 2 May 2018 14:14:49 +0930 Subject: init: Fix trailing bracket in "Starting kernel" 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 Signed-off-by: Stewart Smith --- core/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/init.c') diff --git a/core/init.c b/core/init.c index 9df634c..3b887a2 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; -- cgit v1.1