summaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-06 21:19:14 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-06 21:19:14 +0000
commitd4d537811bcf327b603605aea8d20295ef317f06 (patch)
tree044abda1179e26bc1161e60d5a06a7ff784c9bab /target/linux/lantiq
parentecb548b2e5e00f2cfe5689859dded4a9b0b08adf (diff)
kernel: rewrite the phy packet hook, put it in the network stack to avoid having to keep non-upstream ethernet driver changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31637 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq')
-rw-r--r--target/linux/lantiq/patches-3.2/200-owrt-netif_receive_skb.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/target/linux/lantiq/patches-3.2/200-owrt-netif_receive_skb.patch b/target/linux/lantiq/patches-3.2/200-owrt-netif_receive_skb.patch
deleted file mode 100644
index df63eabb7..000000000
--- a/target/linux/lantiq/patches-3.2/200-owrt-netif_receive_skb.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/drivers/net/ethernet/lantiq_etop.c
-+++ b/drivers/net/ethernet/lantiq_etop.c
-@@ -188,8 +188,12 @@ ltq_etop_hw_receive(struct ltq_etop_chan
-
- skb_put(skb, len);
- skb->dev = ch->netdev;
-- skb->protocol = eth_type_trans(skb, ch->netdev);
-- netif_receive_skb(skb);
-+ if (priv->phydev && priv->phydev->netif_receive_skb) {
-+ priv->phydev->netif_receive_skb(skb);
-+ } else {
-+ skb->protocol = eth_type_trans(skb, ch->netdev);
-+ netif_receive_skb(skb);
-+ }
- }
-
- static int