diff options
author | Simon Glass <sjg@chromium.org> | 2012-01-14 15:24:52 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-18 21:33:05 +0100 |
commit | c8e66db7893532f2222334e7c36ee841da34ef4c (patch) | |
tree | d06eaa23d0da3abe470b3b1df1748697afb1157c /board/Seagate | |
parent | cd24a6bf2183ac24080e0348e193ba627711fcbc (diff) |
bootstage: Convert net progress numbers to enums
This changes over the network-related progress numbers to use enums
from bootstage.h.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/Seagate')
-rw-r--r-- | board/Seagate/dockstar/dockstar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/Seagate/dockstar/dockstar.c b/board/Seagate/dockstar/dockstar.c index 8cbfb02b156..38473e58088 100644 --- a/board/Seagate/dockstar/dockstar.c +++ b/board/Seagate/dockstar/dockstar.c @@ -172,7 +172,7 @@ void show_boot_progress(int val) case BOOTSTAGE_ID_RUN_OS: /* booting Linux */ set_leds(BOTH_LEDS, NEITHER_LED); break; - case 64: /* Ethernet initialization */ + case BOOTSTAGE_ID_NET_ETH_START: /* Ethernet initialization */ set_leds(GREEN_LED, GREEN_LED); break; default: |