es3210: convert to net_device_ops
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d269941b5b
commit
9a9aa14a74
@ -64,9 +64,6 @@ static const char version[] =
|
|||||||
|
|
||||||
static int es_probe1(struct net_device *dev, int ioaddr);
|
static int es_probe1(struct net_device *dev, int ioaddr);
|
||||||
|
|
||||||
static int es_open(struct net_device *dev);
|
|
||||||
static int es_close(struct net_device *dev);
|
|
||||||
|
|
||||||
static void es_reset_8390(struct net_device *dev);
|
static void es_reset_8390(struct net_device *dev);
|
||||||
|
|
||||||
static void es_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page);
|
static void es_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page);
|
||||||
@ -289,11 +286,7 @@ static int __init es_probe1(struct net_device *dev, int ioaddr)
|
|||||||
ei_status.block_output = &es_block_output;
|
ei_status.block_output = &es_block_output;
|
||||||
ei_status.get_8390_hdr = &es_get_8390_hdr;
|
ei_status.get_8390_hdr = &es_get_8390_hdr;
|
||||||
|
|
||||||
dev->open = &es_open;
|
dev->netdev_ops = &ei_netdev_ops;
|
||||||
dev->stop = &es_close;
|
|
||||||
#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);
|
||||||
@ -385,22 +378,6 @@ static void es_block_output(struct net_device *dev, int count,
|
|||||||
memcpy_toio(shmem, buf, count);
|
memcpy_toio(shmem, buf, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int es_open(struct net_device *dev)
|
|
||||||
{
|
|
||||||
ei_open(dev);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int es_close(struct net_device *dev)
|
|
||||||
{
|
|
||||||
|
|
||||||
if (ei_debug > 1)
|
|
||||||
printk("%s: Shutting down ethercard.\n", dev->name);
|
|
||||||
|
|
||||||
ei_close(dev);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef MODULE
|
#ifdef MODULE
|
||||||
#define MAX_ES_CARDS 4 /* Max number of ES3210 cards per module */
|
#define MAX_ES_CARDS 4 /* Max number of ES3210 cards per module */
|
||||||
#define NAMELEN 8 /* # of chars for storing dev->name */
|
#define NAMELEN 8 /* # of chars for storing dev->name */
|
||||||
|
Loading…
Reference in New Issue
Block a user