diff options
Diffstat (limited to 'lib_sh/board.c')
-rw-r--r-- | lib_sh/board.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib_sh/board.c b/lib_sh/board.c index 5d61f0d..5ed40e9 100644 --- a/lib_sh/board.c +++ b/lib_sh/board.c @@ -28,6 +28,10 @@ #include <net.h> #include <environment.h> +#ifdef CONFIG_BITBANGMII +#include <miiphy.h> +#endif + extern void malloc_bin_reloc (void); extern int cpu_init(void); extern int board_init(void); @@ -178,6 +182,9 @@ void sh_generic_init(void) #endif /* CONFIG_WATCHDOG*/ +#ifdef CONFIG_BITBANGMII + bb_miiphy_init(); +#endif #if defined(CONFIG_CMD_NET) { char *s; |