diff options
Diffstat (limited to 'board/xm250/xm250.c')
| -rw-r--r-- | board/xm250/xm250.c | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/board/xm250/xm250.c b/board/xm250/xm250.c index 56b1cd4f4..246bdde75 100644 --- a/board/xm250/xm250.c +++ b/board/xm250/xm250.c @@ -27,6 +27,7 @@  #include <asm/arch/pxa-regs.h>  #include <common.h> +#include <netdev.h>  DECLARE_GLOBAL_DATA_PTR; @@ -80,3 +81,14 @@ dram_init (void)  	return (0);  } + +#ifdef CONFIG_CMD_NET +int board_eth_init(bd_t *bis) +{ +	int rc = 0; +#ifdef CONFIG_SMC91111 +	rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); +#endif +	return rc; +} +#endif |