diff options
Diffstat (limited to 'board/cm-bf548')
| -rw-r--r-- | board/cm-bf548/cm-bf548.c | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/board/cm-bf548/cm-bf548.c b/board/cm-bf548/cm-bf548.c index 1c2660046..796263d62 100644 --- a/board/cm-bf548/cm-bf548.c +++ b/board/cm-bf548/cm-bf548.c @@ -9,6 +9,7 @@  #include <common.h>  #include <config.h>  #include <command.h> +#include <netdev.h>  #include <asm/blackfin.h>  DECLARE_GLOBAL_DATA_PTR; @@ -77,3 +78,12 @@ int board_early_init_f(void)  	return 0;  } + +int board_eth_init(bd_t *bis) +{ +	int rc = 0; +#ifdef CONFIG_SMC911X +	rc = smc911x_initialize(0, CONFIG_SMC911X_BASE); +#endif +	return rc; +} |