From 578ac1e9ba4c79175e69becb28e7157a84eff241 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 10 Dec 2011 11:07:54 +0000 Subject: bootstage: Make use of BOOTSTAGE_ID_RUN_OS in show_boot_progress() This changes the number 15 as used in boot_stage_progress() to use the new name provided for it. This is a separate patch because it touches so many files. Signed-off-by: Simon Glass Acked-by: Mike Frysinger --- board/ti/beagle/beagle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/ti/beagle') diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index c09c833..114ab7e 100644 --- a/board/ti/beagle/beagle.c +++ b/board/ti/beagle/beagle.c @@ -485,7 +485,7 @@ int board_mmc_init(bd_t *bis) /* Call usb_stop() before starting the kernel */ void show_boot_progress(int val) { - if(val == 15) + if (val == BOOTSTAGE_ID_RUN_OS) usb_stop(); } -- cgit v1.1