Skip to content

Commit

Permalink
init: Fix trailing bracket in "Starting kernel"
Browse files Browse the repository at this point in the history
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: 293ca03 ("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>
  • Loading branch information
shenki authored and stewartsmith committed May 3, 2018
1 parent 9342dc4 commit 1d724fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1d724fa

Please sign in to comment.