diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-10-22 23:47:51 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-11-09 21:38:03 -0800 |
commit | a9bec96d6359ac9f90a852962bf3040cad9e0256 (patch) | |
tree | 5b35fe86d97779beec933cb64331b374ce60f38d /board/sorcery | |
parent | 0e8454e990385a58f708c2fc26d31ac041c7a6c5 (diff) | |
download | u-boot-imx-a9bec96d6359ac9f90a852962bf3040cad9e0256.zip u-boot-imx-a9bec96d6359ac9f90a852962bf3040cad9e0256.tar.gz u-boot-imx-a9bec96d6359ac9f90a852962bf3040cad9e0256.tar.bz2 |
Moved initialization of MPC8220 FEC to cpu_eth_init()
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/sorcery')
-rw-r--r-- | board/sorcery/sorcery.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/sorcery/sorcery.c b/board/sorcery/sorcery.c index 3e1bd6f..90d4298 100644 --- a/board/sorcery/sorcery.c +++ b/board/sorcery/sorcery.c @@ -62,5 +62,7 @@ void pci_init_board (void) int board_eth_init(bd_t *bis) { + /* Initialize built-in FEC first */ + cpu_eth_init(bis); return pci_eth_init(bis); } |