Commit 91290cf728dd871c86f370119899789398d956af

Authored by Mela Custodio
Committed by Albert ARIBAUD
1 parent 42ddfad6ab

bootstage: arm: fix fdt stashing code

The conditional is using a variable that is not defined.

Signed-off-by: Rommel G Custodio <sessyargc+u-boot@gmail.com>

Showing 1 changed file with 1 additions and 2 deletions Side-by-side Diff

arch/arm/lib/bootm.c
... ... @@ -71,8 +71,7 @@
71 71 "(fake run for tracing)" : "");
72 72 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
73 73 #ifdef CONFIG_BOOTSTAGE_FDT
74   - if (flag == BOOTM_STATE_OS_FAKE_GO)
75   - bootstage_fdt_add_report();
  74 + bootstage_fdt_add_report();
76 75 #endif
77 76 #ifdef CONFIG_BOOTSTAGE_REPORT
78 77 bootstage_report();