提交 1494f2f5 编写于 作者: S Stephen Hemminger 提交者: David S. Miller

netdev: convert ac3200 to net_device_ops

Signed-off-by: NStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 c6bca821
...@@ -143,6 +143,22 @@ struct net_device * __init ac3200_probe(int unit) ...@@ -143,6 +143,22 @@ struct net_device * __init ac3200_probe(int unit)
} }
#endif #endif
static const struct net_device_ops ac_netdev_ops = {
.ndo_open = ac_open,
.ndo_stop = ac_close_card,
.ndo_start_xmit = ei_start_xmit,
.ndo_tx_timeout = ei_tx_timeout,
.ndo_get_stats = ei_get_stats,
.ndo_set_multicast_list = ei_set_multicast_list,
.ndo_validate_addr = eth_validate_addr,
.ndo_set_mac_address = eth_mac_addr,
.ndo_change_mtu = eth_change_mtu,
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = ei_poll,
#endif
};
static int __init ac_probe1(int ioaddr, struct net_device *dev) static int __init ac_probe1(int ioaddr, struct net_device *dev)
{ {
int i, retval; int i, retval;
...@@ -253,11 +269,7 @@ static int __init ac_probe1(int ioaddr, struct net_device *dev) ...@@ -253,11 +269,7 @@ static int __init ac_probe1(int ioaddr, struct net_device *dev)
ei_status.block_output = &ac_block_output; ei_status.block_output = &ac_block_output;
ei_status.get_8390_hdr = &ac_get_8390_hdr; ei_status.get_8390_hdr = &ac_get_8390_hdr;
dev->open = &ac_open; dev->netdev_ops = &ac_netdev_ops;
dev->stop = &ac_close_card;
#ifdef CONFIG_NET_POLL_CONTROLLER
dev->poll_controller = ei_poll;
#endif
NS8390_init(dev, 0); NS8390_init(dev, 0);
retval = register_netdev(dev); retval = register_netdev(dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册