ne2000: convert to net_device_ops
Last driver for today. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
53cdd28961
commit
4ef8e76833
@@ -174,9 +174,6 @@ bad_clone_list[] __initdata = {
|
|||||||
static int ne_probe1(struct net_device *dev, unsigned long ioaddr);
|
static int ne_probe1(struct net_device *dev, unsigned long ioaddr);
|
||||||
static int ne_probe_isapnp(struct net_device *dev);
|
static int ne_probe_isapnp(struct net_device *dev);
|
||||||
|
|
||||||
static int ne_open(struct net_device *dev);
|
|
||||||
static int ne_close(struct net_device *dev);
|
|
||||||
|
|
||||||
static void ne_reset_8390(struct net_device *dev);
|
static void ne_reset_8390(struct net_device *dev);
|
||||||
static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
|
static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
|
||||||
int ring_page);
|
int ring_page);
|
||||||
@@ -536,11 +533,8 @@ static int __init ne_probe1(struct net_device *dev, unsigned long ioaddr)
|
|||||||
ei_status.block_output = &ne_block_output;
|
ei_status.block_output = &ne_block_output;
|
||||||
ei_status.get_8390_hdr = &ne_get_8390_hdr;
|
ei_status.get_8390_hdr = &ne_get_8390_hdr;
|
||||||
ei_status.priv = 0;
|
ei_status.priv = 0;
|
||||||
dev->open = &ne_open;
|
|
||||||
dev->stop = &ne_close;
|
dev->netdev_ops = &eip_netdev_ops;
|
||||||
#ifdef CONFIG_NET_POLL_CONTROLLER
|
|
||||||
dev->poll_controller = eip_poll;
|
|
||||||
#endif
|
|
||||||
NS8390p_init(dev, 0);
|
NS8390p_init(dev, 0);
|
||||||
|
|
||||||
ret = register_netdev(dev);
|
ret = register_netdev(dev);
|
||||||
@@ -557,20 +551,6 @@ err_out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ne_open(struct net_device *dev)
|
|
||||||
{
|
|
||||||
eip_open(dev);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int ne_close(struct net_device *dev)
|
|
||||||
{
|
|
||||||
if (ei_debug > 1)
|
|
||||||
printk(KERN_DEBUG "%s: Shutting down ethercard.\n", dev->name);
|
|
||||||
eip_close(dev);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hard reset the card. This used to pause for the same period that a
|
/* Hard reset the card. This used to pause for the same period that a
|
||||||
8390 reset command required, but that shouldn't be necessary. */
|
8390 reset command required, but that shouldn't be necessary. */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user