Add bb_miiphy_init call before any ethernet bring-up code. Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
diff --git a/lib_sh/board.c b/lib_sh/board.c index 5d61f0d..5ed40e922 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 @@ #endif /* CONFIG_WATCHDOG*/ +#ifdef CONFIG_BITBANGMII + bb_miiphy_init(); +#endif #if defined(CONFIG_CMD_NET) { char *s;