summaryrefslogtreecommitdiffstats
path: root/board/freescale
diff options
context:
space:
mode:
authorBen Warren <biggerbadderben@gmail.com>2008-08-31 20:37:00 -0700
committerBen Warren <biggerbadderben@gmail.com>2008-09-02 21:18:19 -0700
commit10efa024b8ffd9e6aaca63da8bddfdffdc672274 (patch)
tree77af62cc6ff60d614d605a5bdaa5015d4e710c35 /board/freescale
parent8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0 (diff)
downloadblackbird-obmc-uboot-10efa024b8ffd9e6aaca63da8bddfdffdc672274.tar.gz
blackbird-obmc-uboot-10efa024b8ffd9e6aaca63da8bddfdffdc672274.zip
Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
Affected boards: db64360 db64460 katmai taihu taishan yucca cpc45 cpu87 eXalion elppc debris kvme080 mpc8315erdb integratorap ixdp425 oxc pm826 pm828 pm854 pm856 ppmc7xx sc3 sc520_spunk sorcery tqm8272 tqm85xx utx8245 Removed initialization of the driver from net/eth.c Also, wrapped contents of pci_eth_init() by CONFIG_PCI. Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/mpc8315erdb/mpc8315erdb.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/board/freescale/mpc8315erdb/mpc8315erdb.c b/board/freescale/mpc8315erdb/mpc8315erdb.c
index 3eecee2519..0330218769 100644
--- a/board/freescale/mpc8315erdb/mpc8315erdb.c
+++ b/board/freescale/mpc8315erdb/mpc8315erdb.c
@@ -29,6 +29,7 @@
#include <fdt_support.h>
#include <pci.h>
#include <mpc83xx.h>
+#include <netdev.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -165,3 +166,9 @@ void ft_board_setup(void *blob, bd_t *bd)
fdt_tsec1_fixup(blob, bd);
}
#endif
+
+int board_eth_init(bd_t *bis)
+{
+ cpu_eth_init(bis); /* Initialize TSECs first */
+ return pci_eth_init(bis);
+}
OpenPOWER on IntegriCloud