ip17xx: r21709 broke VLAN functionality on the IP175C switch, add back mdelay() to...
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 3 Aug 2010 03:04:34 +0000 (03:04 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 3 Aug 2010 03:04:34 +0000 (03:04 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22468 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/generic/files/drivers/net/phy/ip17xx.c

index 262123a..864168f 100644 (file)
@@ -373,6 +373,7 @@ static int setPhy(struct ip17xx_state *state, reg mii, u16 value)
        err = ip_phy_write(state, mii.p, mii.m, value);
        if (err < 0)
                return err;
+       mdelay(2);
        getPhy(state, mii);
        return 0;
 }