aboutsummaryrefslogtreecommitdiff
path: root/core/init.c
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2018-05-02 14:14:49 +0930
committerStewart Smith <stewart@linux.ibm.com>2018-05-02 20:01:34 -0500
commit1d724fa588bc5bd05eed92690f73653a49207fb6 (patch)
tree0953a17b3d34695228d91f79179e0f075ce281b4 /core/init.c
parent9342dc40147ee95cfe900c81edd079835c9c0fc1 (diff)
downloadskiboot-1d724fa588bc5bd05eed92690f73653a49207fb6.zip
skiboot-1d724fa588bc5bd05eed92690f73653a49207fb6.tar.gz
skiboot-1d724fa588bc5bd05eed92690f73653a49207fb6.tar.bz2
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 <joel@jms.id.au> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'core/init.c')
-rw-r--r--core/init.c2
1 files changed, 1 insertions, 1 deletions
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;