diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-11-07 12:48:17 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-11-07 12:48:17 +0000 |
commit | 4a5b5bdb004cab22268204b587809d019ad146af (patch) | |
tree | 11dac156d3d233cf1641205eec48a92d3897ed6a /target/linux/brcm63xx | |
parent | a8a51aaf290d9bb58af3331c4fc56267fcff5c5b (diff) |
[brcm63xx] merge upstream fixes on mdio loop
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18335 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx')
-rw-r--r-- | target/linux/brcm63xx/patches-2.6.30/060-bcm63xx_enet_upstream_fixes.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-2.6.30/060-bcm63xx_enet_upstream_fixes.patch b/target/linux/brcm63xx/patches-2.6.30/060-bcm63xx_enet_upstream_fixes.patch index 0271aa6c9..e4c8026b3 100644 --- a/target/linux/brcm63xx/patches-2.6.30/060-bcm63xx_enet_upstream_fixes.patch +++ b/target/linux/brcm63xx/patches-2.6.30/060-bcm63xx_enet_upstream_fixes.patch @@ -8,6 +8,15 @@ #include <bcm63xx_dev_enet.h> #include "bcm63xx_enet.h" +@@ -91,7 +90,7 @@ + if (enet_readl(priv, ENET_IR_REG) & ENET_IR_MII) + break; + udelay(1); +- } while (limit-- >= 0); ++ } while (limit-- > 0); + + return (limit < 0) ? 1 : 0; + } @@ -321,7 +320,7 @@ if (len < copybreak) { struct sk_buff *nskb; |