Commit f3701c2f0e2ede7ae265fcf627f01f2a795ac41b
Committed by
David S. Miller
1 parent
3186ae8f3f
Exists in
master
and in
7 other branches
3c515: convert to net_device_ops
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 15 additions and 6 deletions Side-by-side Diff
drivers/net/3c515.c
... | ... | @@ -563,6 +563,20 @@ |
563 | 563 | return NULL; |
564 | 564 | } |
565 | 565 | |
566 | + | |
567 | +static const struct net_device_ops netdev_ops = { | |
568 | + .ndo_open = corkscrew_open, | |
569 | + .ndo_stop = corkscrew_close, | |
570 | + .ndo_start_xmit = corkscrew_start_xmit, | |
571 | + .ndo_tx_timeout = corkscrew_timeout, | |
572 | + .ndo_get_stats = corkscrew_get_stats, | |
573 | + .ndo_set_multicast_list = set_rx_mode, | |
574 | + .ndo_change_mtu = eth_change_mtu, | |
575 | + .ndo_set_mac_address = eth_mac_addr, | |
576 | + .ndo_validate_addr = eth_validate_addr, | |
577 | +}; | |
578 | + | |
579 | + | |
566 | 580 | static int corkscrew_setup(struct net_device *dev, int ioaddr, |
567 | 581 | struct pnp_dev *idev, int card_number) |
568 | 582 | { |
569 | 583 | |
... | ... | @@ -681,13 +695,8 @@ |
681 | 695 | vp->full_bus_master_rx = (vp->capabilities & 0x20) ? 1 : 0; |
682 | 696 | |
683 | 697 | /* The 3c51x-specific entries in the device structure. */ |
684 | - dev->open = &corkscrew_open; | |
685 | - dev->hard_start_xmit = &corkscrew_start_xmit; | |
686 | - dev->tx_timeout = &corkscrew_timeout; | |
698 | + dev->netdev_ops = &netdev_ops; | |
687 | 699 | dev->watchdog_timeo = (400 * HZ) / 1000; |
688 | - dev->stop = &corkscrew_close; | |
689 | - dev->get_stats = &corkscrew_get_stats; | |
690 | - dev->set_multicast_list = &set_rx_mode; | |
691 | 700 | dev->ethtool_ops = &netdev_ethtool_ops; |
692 | 701 | |
693 | 702 | return register_netdev(dev); |