ethoc: Clear command buffer after write
[deliverable/linux.git] / drivers / net / ethoc.c
index e5c2f5b1d439a3bdebcd45ca7e29c5c17cace120..1681f081ff6f69774be05cdc6991a130272041e1 100644 (file)
@@ -613,8 +613,11 @@ static int ethoc_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
 
        while (time_before(jiffies, timeout)) {
                u32 stat = ethoc_read(priv, MIISTATUS);
-               if (!(stat & MIISTATUS_BUSY))
+               if (!(stat & MIISTATUS_BUSY)) {
+                       /* reset MII command register */
+                       ethoc_write(priv, MIICOMMAND, 0);
                        return 0;
+               }
 
                schedule();
        }
This page took 0.044408 seconds and 5 git commands to generate.