mirror of
https://github.com/torvalds/linux.git
synced 2024-12-05 18:41:23 +00:00
ns83820: fix net_device_ops support
The vlan_rx_register fuction is now in net_device_ops Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
97488c5b2d
commit
a7d1de25dc
@ -1957,6 +1957,9 @@ static const struct net_device_ops netdev_ops = {
|
|||||||
.ndo_set_multicast_list = ns83820_set_multicast,
|
.ndo_set_multicast_list = ns83820_set_multicast,
|
||||||
.ndo_validate_addr = eth_validate_addr,
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
.ndo_tx_timeout = ns83820_tx_timeout,
|
.ndo_tx_timeout = ns83820_tx_timeout,
|
||||||
|
#ifdef NS83820_VLAN_ACCEL_SUPPORT
|
||||||
|
.ndo_vlan_rx_register = ns83820_vlan_rx_register,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __devinit ns83820_init_one(struct pci_dev *pci_dev,
|
static int __devinit ns83820_init_one(struct pci_dev *pci_dev,
|
||||||
@ -2216,7 +2219,6 @@ static int __devinit ns83820_init_one(struct pci_dev *pci_dev,
|
|||||||
#ifdef NS83820_VLAN_ACCEL_SUPPORT
|
#ifdef NS83820_VLAN_ACCEL_SUPPORT
|
||||||
/* We also support hardware vlan acceleration */
|
/* We also support hardware vlan acceleration */
|
||||||
ndev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
|
ndev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
|
||||||
ndev->vlan_rx_register = ns83820_vlan_rx_register;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (using_dac) {
|
if (using_dac) {
|
||||||
|
Loading…
Reference in New Issue
Block a user