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/taishan/taishan.c | |
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/taishan/taishan.c')
-rw-r--r-- | board/amcc/taishan/taishan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/amcc/taishan/taishan.c b/board/amcc/taishan/taishan.c index 28bdab5..53ce88c 100644 --- a/board/amcc/taishan/taishan.c +++ b/board/amcc/taishan/taishan.c @@ -315,5 +315,6 @@ int post_hotkeys_pressed(void) int board_eth_init(bd_t *bis) { + cpu_eth_init(bis); return pci_eth_init(bis); } |