diff options
| author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2021-07-31 17:14:32 +0300 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2021-08-02 15:13:15 +0100 |
| commit | 29a097b7747725da003245412dab61093d4e5976 (patch) | |
| tree | 844d0dc679391b7301792713a9ae90eba939721b /net/dsa/tag_dsa.c | |
| parent | nfc: hci: pass callback data param as pointer in nci_request() (diff) | |
| download | linux-29a097b7747725da003245412dab61093d4e5976.tar.gz linux-29a097b7747725da003245412dab61093d4e5976.zip | |
net: dsa: remove the struct packet_type argument from dsa_device_ops::rcv()
No tagging driver uses this.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/tag_dsa.c')
| -rw-r--r-- | net/dsa/tag_dsa.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/dsa/tag_dsa.c b/net/dsa/tag_dsa.c index 3607499d0697..e32f8160e895 100644 --- a/net/dsa/tag_dsa.c +++ b/net/dsa/tag_dsa.c @@ -332,8 +332,7 @@ static struct sk_buff *dsa_xmit(struct sk_buff *skb, struct net_device *dev) return dsa_xmit_ll(skb, dev, 0); } -static struct sk_buff *dsa_rcv(struct sk_buff *skb, struct net_device *dev, - struct packet_type *pt) +static struct sk_buff *dsa_rcv(struct sk_buff *skb, struct net_device *dev) { if (unlikely(!pskb_may_pull(skb, DSA_HLEN))) return NULL; @@ -373,8 +372,7 @@ static struct sk_buff *edsa_xmit(struct sk_buff *skb, struct net_device *dev) return skb; } -static struct sk_buff *edsa_rcv(struct sk_buff *skb, struct net_device *dev, - struct packet_type *pt) +static struct sk_buff *edsa_rcv(struct sk_buff *skb, struct net_device *dev) { if (unlikely(!pskb_may_pull(skb, EDSA_HLEN))) return NULL; |
