diff options
Diffstat (limited to 'board/sorcery/sorcery.c')
| -rw-r--r-- | board/sorcery/sorcery.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/board/sorcery/sorcery.c b/board/sorcery/sorcery.c index 2b789d474..e4fb1465f 100644 --- a/board/sorcery/sorcery.c +++ b/board/sorcery/sorcery.c @@ -26,6 +26,7 @@  #include <asm/processor.h>  #include <asm/mmu.h>  #include <pci.h> +#include <netdev.h>  phys_size_t initdram (int board_type)  { @@ -58,3 +59,8 @@ void pci_init_board (void)  	pci_mpc8220_init (&hose);  #endif /* CONFIG_PCI */  } + +int board_eth_init(bd_t *bis) +{ +	return pci_eth_init(bis); +} |