From cef0efaf2fa55d1f25066cfb02bd984c27f9ca31 Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Wed, 11 Feb 2009 09:29:33 +0100 Subject: 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 --- board/amcc/taishan/taishan.c | 1 + 1 file changed, 1 insertion(+) (limited to 'board/amcc/taishan') diff --git a/board/amcc/taishan/taishan.c b/board/amcc/taishan/taishan.c index 28bdab5dbb..53ce88c6cd 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); } -- cgit v1.2.1