e1000: convert to net_device_ops
Convert to new network device ops interface. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
80ff32b76f
commit
0e7614bc3d
1 changed files with 21 additions and 14 deletions
|
@ -888,6 +888,25 @@ static int e1000_is_need_ioport(struct pci_dev *pdev)
|
|||
}
|
||||
}
|
||||
|
||||
static const struct net_device_ops e1000_netdev_ops = {
|
||||
.ndo_open = e1000_open,
|
||||
.ndo_stop = e1000_close,
|
||||
.ndo_get_stats = e1000_get_stats,
|
||||
.ndo_set_rx_mode = e1000_set_rx_mode,
|
||||
.ndo_set_mac_address = e1000_set_mac,
|
||||
.ndo_tx_timeout = e1000_tx_timeout,
|
||||
.ndo_change_mtu = e1000_change_mtu,
|
||||
.ndo_do_ioctl = e1000_ioctl,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
||||
.ndo_vlan_rx_register = e1000_vlan_rx_register,
|
||||
.ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
|
||||
.ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
|
||||
#ifdef CONFIG_NET_POLL_CONTROLLER
|
||||
.ndo_poll_controller = e1000_netpoll,
|
||||
#endif
|
||||
};
|
||||
|
||||
/**
|
||||
* e1000_probe - Device Initialization Routine
|
||||
* @pdev: PCI device information struct
|
||||
|
@ -981,24 +1000,12 @@ static int __devinit e1000_probe(struct pci_dev *pdev,
|
|||
}
|
||||
}
|
||||
|
||||
netdev->open = &e1000_open;
|
||||
netdev->stop = &e1000_close;
|
||||
netdev->netdev_ops = &e1000_netdev_ops;
|
||||
netdev->hard_start_xmit = &e1000_xmit_frame;
|
||||
netdev->get_stats = &e1000_get_stats;
|
||||
netdev->set_rx_mode = &e1000_set_rx_mode;
|
||||
netdev->set_mac_address = &e1000_set_mac;
|
||||
netdev->change_mtu = &e1000_change_mtu;
|
||||
netdev->do_ioctl = &e1000_ioctl;
|
||||
e1000_set_ethtool_ops(netdev);
|
||||
netdev->tx_timeout = &e1000_tx_timeout;
|
||||
netdev->watchdog_timeo = 5 * HZ;
|
||||
netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
|
||||
netdev->vlan_rx_register = e1000_vlan_rx_register;
|
||||
netdev->vlan_rx_add_vid = e1000_vlan_rx_add_vid;
|
||||
netdev->vlan_rx_kill_vid = e1000_vlan_rx_kill_vid;
|
||||
#ifdef CONFIG_NET_POLL_CONTROLLER
|
||||
netdev->poll_controller = e1000_netpoll;
|
||||
#endif
|
||||
|
||||
strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
|
||||
|
||||
adapter->bd_number = cards_found;
|
||||
|
|
Loading…
Reference in a new issue