Skip to content

Commit

Permalink
arm: lib: bootm: Push the Starting kernel print to the end
Browse files Browse the repository at this point in the history
Push the Starting kernel print to the end just before the
dm_remove_devices call.

Signed-off-by: Keerthy <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
  • Loading branch information
Keerthyj authored and trini committed Mar 22, 2019
1 parent 7b80644 commit 6dad56d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/lib/bootm.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ __weak void board_quiesce_devices(void)
*/
static void announce_and_cleanup(int fake)
{
printf("\nStarting kernel ...%s\n\n", fake ?
"(fake run for tracing)" : "");
bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
#ifdef CONFIG_BOOTSTAGE_FDT
bootstage_fdt_add_report();
Expand All @@ -104,6 +102,8 @@ static void announce_and_cleanup(int fake)

board_quiesce_devices();

printf("\nStarting kernel ...%s\n\n", fake ?
"(fake run for tracing)" : "");
/*
* Call remove function of all devices with a removal flag set.
* This may be useful for last-stage operations, like cancelling
Expand Down

0 comments on commit 6dad56d

Please sign in to comment.