summaryrefslogtreecommitdiffstats
path: root/net/eth.c
diff options
context:
space:
mode:
authorBen Warren <biggerbadderben@gmail.com>2008-08-31 21:41:08 -0700
committerBen Warren <biggerbadderben@gmail.com>2008-09-02 21:18:16 -0700
commit0b252f50ae218ae15bfb63af44227972686ebc56 (patch)
tree98e5a13a7c1574f7fa1061fa9dc97293d7e014a3 /net/eth.c
parent02d69891d95ee76b0e86e1715a4dc0b964a57cb7 (diff)
downloadtalos-obmc-uboot-0b252f50ae218ae15bfb63af44227972686ebc56.tar.gz
talos-obmc-uboot-0b252f50ae218ae15bfb63af44227972686ebc56.zip
Moved initialization of RTL8139 Ethernet controller to board_eth_init()
Affected boards: hidden_dragon MPC8544DS MPC8610HPCN R2DPLUS TB0229 Removed initialization of the driver from net/eth.c Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'net/eth.c')
-rw-r--r--net/eth.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/net/eth.c b/net/eth.c
index 69f66b49fa..092d42681e 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -60,7 +60,6 @@ extern int ns8382x_initialize(bd_t*);
extern int pcnet_initialize(bd_t*);
extern int plb2800_eth_initialize(bd_t*);
extern int ppc_4xx_eth_initialize(bd_t *);
-extern int rtl8139_initialize(bd_t*);
extern int scc_initialize(bd_t*);
extern int tsi108_eth_initialize(bd_t*);
extern int npe_initialize(bd_t *);
@@ -246,9 +245,6 @@ int eth_initialize(bd_t *bis)
#if defined(CONFIG_TSI108_ETH)
tsi108_eth_initialize(bis);
#endif
-#if defined(CONFIG_RTL8139)
- rtl8139_initialize(bis);
-#endif
if (!eth_devices) {
puts ("No ethernet found.\n");
show_boot_progress (-64);
OpenPOWER on IntegriCloud