diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-09-03 22:43:57 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-09-03 22:43:57 +0200 | 
| commit | 16116ddd0d0158f4e91c91dc979b845b6e98a99d (patch) | |
| tree | e2062a888c76462b6335da29092c5fe4134c0859 /board/sorcery/sorcery.c | |
| parent | 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51 (diff) | |
| parent | be1b0d2777e179191a57b138b660547a17e55aad (diff) | |
| download | olio-uboot-2014.01-16116ddd0d0158f4e91c91dc979b845b6e98a99d.tar.xz olio-uboot-2014.01-16116ddd0d0158f4e91c91dc979b845b6e98a99d.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-net
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); +} |