diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-06 21:19:14 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-06 21:19:14 +0000 |
commit | f20d1938b59d2edb85d5cd6b67176b452e9dff67 (patch) | |
tree | 044abda1179e26bc1161e60d5a06a7ff784c9bab /target/linux/lantiq | |
parent | c7667e1b888e04d3696dc01d7874ef484ba502f7 (diff) | |
download | master-187ad058-f20d1938b59d2edb85d5cd6b67176b452e9dff67.tar.gz master-187ad058-f20d1938b59d2edb85d5cd6b67176b452e9dff67.tar.bz2 master-187ad058-f20d1938b59d2edb85d5cd6b67176b452e9dff67.zip |
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.patch | 17 |
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 df63eabb76..0000000000 --- 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 |