diff options
author | Luigi 'Comio' Mantellini | 2009-10-10 12:42:21 +0200 |
---|---|---|
committer | Ben Warren | 2009-10-10 23:16:53 -0700 |
commit | 310cecb8ccdbc8a9be580e75b2fd362179d78535 (patch) | |
tree | 8aafcce0beeec078bb6c36cfdc9e27481b394938 /lib_arm | |
parent | 4ba31ab33ac824635fcb49ac609070a9ebcab7f0 (diff) |
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>
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/board.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index a0e56d5ae8f..5e3d7f65b1e 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -50,6 +50,10 @@ #include <onenand_uboot.h> #include <mmc.h> +#ifdef CONFIG_BITBANGMII +#include <miiphy.h> +#endif + #ifdef CONFIG_DRIVER_SMC91111 #include "../drivers/net/smc91111.h" #endif @@ -417,6 +421,9 @@ extern void davinci_eth_set_mac_addr (const u_int8_t *addr); mmc_initialize (gd->bd); #endif +#ifdef CONFIG_BITBANGMII + bb_miiphy_init(); +#endif #if defined(CONFIG_CMD_NET) #if defined(CONFIG_NET_MULTI) puts ("Net: "); |