summaryrefslogtreecommitdiff
path: root/drivers/net/mxc_fec.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/mxc_fec.c')
-rw-r--r--drivers/net/mxc_fec.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/mxc_fec.c b/drivers/net/mxc_fec.c
index 314496e..0e6c0b0 100644
--- a/drivers/net/mxc_fec.c
+++ b/drivers/net/mxc_fec.c
@@ -93,7 +93,7 @@
DECLARE_GLOBAL_DATA_PTR;
-#ifdef CONFIG_MX25
+#if defined(CONFIG_MX25) || defined(CONFIG_MX53)
/*
* * i.MX25 allows RMII mode to be configured via a gasket
* */
@@ -124,6 +124,9 @@ static inline void fec_localhw_setup(volatile fec_t *fecp)
/* re-enable the gasket */
fecp->fec_miigsk_enr = FEC_MIIGSK_ENR_EN;
+
+ while (!(fecp->fec_miigsk_enr & FEC_MIIGSK_ENR_READY))
+ udelay(1);
}
#else
static inline void fec_localhw_setup(fec_t *fecp)