提交 1722de50 编写于 作者: S Stephen Hemminger 提交者: David S. Miller

3c507: convert to net_device_ops

Signed-off-by: NStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 e6c42b78
...@@ -352,6 +352,16 @@ struct net_device * __init el16_probe(int unit) ...@@ -352,6 +352,16 @@ struct net_device * __init el16_probe(int unit)
return ERR_PTR(err); return ERR_PTR(err);
} }
static const struct net_device_ops netdev_ops = {
.ndo_open = el16_open,
.ndo_stop = el16_close,
.ndo_start_xmit = el16_send_packet,
.ndo_tx_timeout = el16_tx_timeout,
.ndo_change_mtu = eth_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr,
};
static int __init el16_probe1(struct net_device *dev, int ioaddr) static int __init el16_probe1(struct net_device *dev, int ioaddr)
{ {
static unsigned char init_ID_done, version_printed; static unsigned char init_ID_done, version_printed;
...@@ -449,10 +459,7 @@ static int __init el16_probe1(struct net_device *dev, int ioaddr) ...@@ -449,10 +459,7 @@ static int __init el16_probe1(struct net_device *dev, int ioaddr)
goto out1; goto out1;
} }
dev->open = el16_open; dev->netdev_ops = &netdev_ops;
dev->stop = el16_close;
dev->hard_start_xmit = el16_send_packet;
dev->tx_timeout = el16_tx_timeout;
dev->watchdog_timeo = TX_TIMEOUT; dev->watchdog_timeo = TX_TIMEOUT;
dev->ethtool_ops = &netdev_ethtool_ops; dev->ethtool_ops = &netdev_ethtool_ops;
dev->flags &= ~IFF_MULTICAST; /* Multicast doesn't work */ dev->flags &= ~IFF_MULTICAST; /* Multicast doesn't work */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册