aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/patches-3.7/0304-etop.patch
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-06-29 16:33:18 +0000
committerJohn Crispin <blogic@openwrt.org>2013-06-29 16:33:18 +0000
commit42f6edb43c8d168e55e74e8b1f4a6695dbbc0b8e (patch)
tree517824532009d825fa6026c3ba41c6445d4c7608 /target/linux/lantiq/patches-3.7/0304-etop.patch
parent24632d6be85c4d9e408885db1b96b879060fccbd (diff)
downloadmaster-187ad058-42f6edb43c8d168e55e74e8b1f4a6695dbbc0b8e.tar.gz
master-187ad058-42f6edb43c8d168e55e74e8b1f4a6695dbbc0b8e.tar.bz2
master-187ad058-42f6edb43c8d168e55e74e8b1f4a6695dbbc0b8e.zip
lantiq: remove 3.7 kernel patches
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37084 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/patches-3.7/0304-etop.patch')
-rw-r--r--target/linux/lantiq/patches-3.7/0304-etop.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/lantiq/patches-3.7/0304-etop.patch b/target/linux/lantiq/patches-3.7/0304-etop.patch
deleted file mode 100644
index 9d17649f4e..0000000000
--- a/target/linux/lantiq/patches-3.7/0304-etop.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/drivers/net/ethernet/lantiq_etop.c
-+++ b/drivers/net/ethernet/lantiq_etop.c
-@@ -343,16 +343,17 @@ static int
- ltq_etop_hw_init(struct net_device *dev)
- {
- struct ltq_etop_priv *priv = netdev_priv(dev);
-+ int mii_mode = priv->mii_mode;
-
- clk_enable(priv->clk_ppe);
-
- if (of_machine_is_compatible("lantiq,ar9")) {
- ltq_etop_gbit_init(dev);
- /* force the etops link to the gbit to MII */
-- priv->mii_mode = PHY_INTERFACE_MODE_MII;
-+ mii_mode = PHY_INTERFACE_MODE_MII;
- }
-
-- switch (priv->mii_mode) {
-+ switch (mii_mode) {
- case PHY_INTERFACE_MODE_RMII:
- ltq_etop_w32_mask(ETOP_MII_MASK,
- ETOP_MII_REVERSE, LTQ_ETOP_CFG);
-@@ -377,7 +378,7 @@ ltq_etop_hw_init(struct net_device *dev)
- break;
- }
- netdev_err(dev, "unknown mii mode %d\n",
-- priv->mii_mode);
-+ mii_mode);
- return -ENOTSUPP;
- }
-