From: Keerthy Date: Wed, 20 Feb 2019 12:47:22 +0000 (+0530) Subject: arm: lib: bootm: Push the Starting kernel print to the end X-Git-Tag: v2019.04~22^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6dad56d733b0334f55a10276e4a3bccc8ca32e43;p=platform%2Fkernel%2Fu-boot.git arm: lib: bootm: Push the Starting kernel print to the end Push the Starting kernel print to the end just before the dm_remove_devices call. Signed-off-by: Keerthy Reviewed-by: Simon Glass --- diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c index 329f20c..bf68a5b 100644 --- a/arch/arm/lib/bootm.c +++ b/arch/arm/lib/bootm.c @@ -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(); @@ -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