mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 08:48:48 +00:00
isa-skeleton: 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:
parent
d0174aea3e
commit
9b6bfecd65
@ -181,6 +181,18 @@ out:
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static const struct net_device_ops netcard_netdev_ops = {
|
||||||
|
.ndo_open = net_open,
|
||||||
|
.ndo_stop = net_close,
|
||||||
|
.ndo_start_xmit = net_send_packet,
|
||||||
|
.ndo_get_stats = net_get_stats,
|
||||||
|
.ndo_set_multicast_list = set_multicast_list,
|
||||||
|
.ndo_tx_timeout = net_tx_timeout,
|
||||||
|
.ndo_validate_addr = eth_validate_addr,
|
||||||
|
.ndo_set_mac_address = eth_mac_addr,
|
||||||
|
.ndo_change_mtu = eth_change_mtu,
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is the real probe routine. Linux has a history of friendly device
|
* This is the real probe routine. Linux has a history of friendly device
|
||||||
* probes on the ISA bus. A good device probes avoids doing writes, and
|
* probes on the ISA bus. A good device probes avoids doing writes, and
|
||||||
@ -303,13 +315,7 @@ static int __init netcard_probe1(struct net_device *dev, int ioaddr)
|
|||||||
np = netdev_priv(dev);
|
np = netdev_priv(dev);
|
||||||
spin_lock_init(&np->lock);
|
spin_lock_init(&np->lock);
|
||||||
|
|
||||||
dev->open = net_open;
|
dev->netdev_ops = &netcard_netdev_ops;
|
||||||
dev->stop = net_close;
|
|
||||||
dev->hard_start_xmit = net_send_packet;
|
|
||||||
dev->get_stats = net_get_stats;
|
|
||||||
dev->set_multicast_list = &set_multicast_list;
|
|
||||||
|
|
||||||
dev->tx_timeout = &net_tx_timeout;
|
|
||||||
dev->watchdog_timeo = MY_TX_TIMEOUT;
|
dev->watchdog_timeo = MY_TX_TIMEOUT;
|
||||||
|
|
||||||
err = register_netdev(dev);
|
err = register_netdev(dev);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user