summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-2.6.33/230-external_phy_fix.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-09-12 21:23:47 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-09-12 21:23:47 +0000
commitdc1302fdf9eb318e81eec25d063017fe01bcc325 (patch)
tree448e40f109b5eb509e0ff7df7bb45d7c7a3a75b9 /target/linux/brcm63xx/patches-2.6.33/230-external_phy_fix.patch
parent327ac42dcae5f418a2eed8382c74041be77638e2 (diff)
downloadmaster-31e0f0ae-dc1302fdf9eb318e81eec25d063017fe01bcc325.tar.gz
master-31e0f0ae-dc1302fdf9eb318e81eec25d063017fe01bcc325.tar.bz2
master-31e0f0ae-dc1302fdf9eb318e81eec25d063017fe01bcc325.zip
remove 2.6.33 support
SVN-Revision: 23037
Diffstat (limited to 'target/linux/brcm63xx/patches-2.6.33/230-external_phy_fix.patch')
-rw-r--r--target/linux/brcm63xx/patches-2.6.33/230-external_phy_fix.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/target/linux/brcm63xx/patches-2.6.33/230-external_phy_fix.patch b/target/linux/brcm63xx/patches-2.6.33/230-external_phy_fix.patch
deleted file mode 100644
index c887a4ed94..0000000000
--- a/target/linux/brcm63xx/patches-2.6.33/230-external_phy_fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/drivers/net/bcm63xx_enet.c
-+++ b/drivers/net/bcm63xx_enet.c
-@@ -962,7 +962,9 @@ static int bcm_enet_open(struct net_devi
- /* all set, enable mac and interrupts, start dma engine and
- * kick rx dma channel */
- wmb();
-- enet_writel(priv, ENET_CTL_ENABLE_MASK, ENET_CTL_REG);
-+ val = enet_readl(priv, ENET_CTL_REG);
-+ val |= ENET_CTL_ENABLE_MASK;
-+ enet_writel(priv, val, ENET_CTL_REG);
- enet_dma_writel(priv, ENETDMA_CFG_EN_MASK, ENETDMA_CFG_REG);
- enet_dma_writel(priv, ENETDMA_CHANCFG_EN_MASK,
- ENETDMA_CHANCFG_REG(priv->rx_chan));