am79c961a: convert to net_device_ops
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f97b1f2a41
commit
fefbfb1e09
@@ -665,6 +665,20 @@ static void __init am79c961_banner(void)
|
|||||||
if (net_debug && version_printed++ == 0)
|
if (net_debug && version_printed++ == 0)
|
||||||
printk(KERN_INFO "%s", version);
|
printk(KERN_INFO "%s", version);
|
||||||
}
|
}
|
||||||
|
static const struct net_device_ops am79c961_netdev_ops = {
|
||||||
|
.ndo_open = am79c961_open,
|
||||||
|
.ndo_stop = am79c961_close,
|
||||||
|
.ndo_start_xmit = am79c961_sendpacket,
|
||||||
|
.ndo_get_stats = am79c961_getstats,
|
||||||
|
.ndo_set_multicast_list = am79c961_setmulticastlist,
|
||||||
|
.ndo_tx_timeout = am79c961_timeout,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
.ndo_change_mtu = eth_change_mtu,
|
||||||
|
.ndo_set_mac_address = eth_mac_addr,
|
||||||
|
#ifdef CONFIG_NET_POLL_CONTROLLER
|
||||||
|
.ndo_poll_controller = am79c961_poll_controller,
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
static int __init am79c961_probe(struct platform_device *pdev)
|
static int __init am79c961_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
@@ -732,15 +746,7 @@ static int __init am79c961_probe(struct platform_device *pdev)
|
|||||||
if (am79c961_hw_init(dev))
|
if (am79c961_hw_init(dev))
|
||||||
goto release;
|
goto release;
|
||||||
|
|
||||||
dev->open = am79c961_open;
|
dev->netdev_ops = &am79c961_netdev_ops;
|
||||||
dev->stop = am79c961_close;
|
|
||||||
dev->hard_start_xmit = am79c961_sendpacket;
|
|
||||||
dev->get_stats = am79c961_getstats;
|
|
||||||
dev->set_multicast_list = am79c961_setmulticastlist;
|
|
||||||
dev->tx_timeout = am79c961_timeout;
|
|
||||||
#ifdef CONFIG_NET_POLL_CONTROLLER
|
|
||||||
dev->poll_controller = am79c961_poll_controller;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ret = register_netdev(dev);
|
ret = register_netdev(dev);
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
|
Reference in New Issue
Block a user