diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:45:44 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:18 -0700 |
commit | 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0 (patch) | |
tree | ba9fe46a4ee78f693f456bef7d8aa93662b09886 /board/esd/adciop/adciop.c | |
parent | ad3381cf4167120db5c7b88e4970245e1d5c0a32 (diff) | |
download | u-boot-imx-8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0.zip u-boot-imx-8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0.tar.gz u-boot-imx-8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0.tar.bz2 |
Moved initialization of TULIP Ethernet controller to board_eth_init()
Affected boards:
cu824
bab7xx
adciop
dasa_sim
mousse
mpc8540eval
musenki
mvblue
pcippc2/pcippc6
sbc8240
stxssa
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/esd/adciop/adciop.c')
-rw-r--r-- | board/esd/adciop/adciop.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/esd/adciop/adciop.c b/board/esd/adciop/adciop.c index 0f655b7..63aaf2c 100644 --- a/board/esd/adciop/adciop.c +++ b/board/esd/adciop/adciop.c @@ -22,6 +22,7 @@ */ #include <common.h> +#include <netdev.h> #include "adciop.h" /* ------------------------------------------------------------------------- */ @@ -95,3 +96,8 @@ int testdram (void) } /* ------------------------------------------------------------------------- */ + +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +} |