diff options
Diffstat (limited to 'board/atmel/at91sam9263ek')
| -rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index 927fc912c..c70507455 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -31,11 +31,13 @@  #include <asm/arch/at91_rstc.h>  #include <asm/arch/gpio.h>  #include <asm/arch/io.h> +#include <asm/arch/hardware.h>  #include <lcd.h>  #include <atmel_lcdc.h>  #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)  #include <net.h>  #endif +#include <netdev.h>  DECLARE_GLOBAL_DATA_PTR; @@ -308,3 +310,12 @@ void reset_phy(void)  #endif  }  #endif + +int board_eth_init(bd_t *bis) +{ +	int rc = 0; +#ifdef CONFIG_MACB +	rc = macb_eth_initialize(0, (void *)AT91_BASE_EMAC, 0x00); +#endif +	return rc; +} |