diff options
author | Stefan Roese <sr@denx.de> | 2009-02-11 09:29:33 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2009-02-12 06:08:07 +0100 |
commit | cef0efaf2fa55d1f25066cfb02bd984c27f9ca31 (patch) | |
tree | 4113967bd7997858743ec5be8357249f74915030 /board/amcc/taihu | |
parent | c645012aefebb301e6907d148c6c8efacac049d4 (diff) | |
download | u-boot-imx-cef0efaf2fa55d1f25066cfb02bd984c27f9ca31.zip u-boot-imx-cef0efaf2fa55d1f25066cfb02bd984c27f9ca31.tar.gz u-boot-imx-cef0efaf2fa55d1f25066cfb02bd984c27f9ca31.tar.bz2 |
ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
Some AMCC eval boards do have a board_eth_init() function calling
pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
with the new eth_init rework.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/taihu')
-rw-r--r-- | board/amcc/taihu/taihu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/amcc/taihu/taihu.c b/board/amcc/taihu/taihu.c index 5224378..669429b 100644 --- a/board/amcc/taihu/taihu.c +++ b/board/amcc/taihu/taihu.c @@ -195,5 +195,6 @@ int pci_pre_init(struct pci_controller *hose) int board_eth_init(bd_t *bis) { + cpu_eth_init(bis); return pci_eth_init(bis); } |