mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
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>
This commit is contained in:
parent
c645012aef
commit
cef0efaf2f
4 changed files with 4 additions and 0 deletions
|
@ -451,5 +451,6 @@ int post_hotkeys_pressed(void)
|
|||
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
cpu_eth_init(bis);
|
||||
return pci_eth_init(bis);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue