diff options
author | Patrick McHardy <kaber@trash.net> | 2013-04-18 22:04:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-19 14:45:27 -0400 |
commit | 80d5c3689b886308247da295a228a54df49a44f6 (patch) | |
tree | ce7b1e6898c3f9fea945e67fd06b125dfcc61fe7 /drivers/net/ethernet/adaptec/starfire.c | |
parent | f646968f8f7c624587de729115d802372b9063dd (diff) |
net: vlan: prepare for 802.1ad VLAN filtering offload
Change the rx_{add,kill}_vid callbacks to take a protocol argument in
preparation of 802.1ad support. The protocol argument used so far is
always htons(ETH_P_8021Q).
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/adaptec/starfire.c')
-rw-r--r-- | drivers/net/ethernet/adaptec/starfire.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/ethernet/adaptec/starfire.c b/drivers/net/ethernet/adaptec/starfire.c index 365865130f7c..cdbc5443ae3b 100644 --- a/drivers/net/ethernet/adaptec/starfire.c +++ b/drivers/net/ethernet/adaptec/starfire.c | |||
@@ -594,7 +594,8 @@ static const struct ethtool_ops ethtool_ops; | |||
594 | 594 | ||
595 | 595 | ||
596 | #ifdef VLAN_SUPPORT | 596 | #ifdef VLAN_SUPPORT |
597 | static int netdev_vlan_rx_add_vid(struct net_device *dev, unsigned short vid) | 597 | static int netdev_vlan_rx_add_vid(struct net_device *dev, |
598 | __be16 proto, u16 vid) | ||
598 | { | 599 | { |
599 | struct netdev_private *np = netdev_priv(dev); | 600 | struct netdev_private *np = netdev_priv(dev); |
600 | 601 | ||
@@ -608,7 +609,8 @@ static int netdev_vlan_rx_add_vid(struct net_device *dev, unsigned short vid) | |||
608 | return 0; | 609 | return 0; |
609 | } | 610 | } |
610 | 611 | ||
611 | static int netdev_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid) | 612 | static int netdev_vlan_rx_kill_vid(struct net_device *dev, |
613 | __be16 proto, u16 vid) | ||
612 | { | 614 | { |
613 | struct netdev_private *np = netdev_priv(dev); | 615 | struct netdev_private *np = netdev_priv(dev); |
614 | 616 | ||