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/yucca/yucca.c | 1 + 1 file changed, 1 insertion(+) (limited to 'board/amcc/yucca') diff --git a/board/amcc/yucca/yucca.c b/board/amcc/yucca/yucca.c index c8055689f7..06c7d625a4 100644 --- a/board/amcc/yucca/yucca.c +++ b/board/amcc/yucca/yucca.c @@ -956,5 +956,6 @@ int onboard_pci_arbiter_selected(int core_pci) int board_eth_init(bd_t *bis) { + cpu_eth_init(bis); return pci_eth_init(bis); } -- cgit v1.2.1