Skip to content

Commit

Permalink
sun3_82586: convert to net_device_ops
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Beregalov <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
alexb0 authored and davem330 committed Apr 13, 2009
1 parent 5a1c28b commit 7e4fdcb
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions drivers/net/sun3_82586.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,18 @@ struct net_device * __init sun3_82586_probe(int unit)
return ERR_PTR(err);
}

static const struct net_device_ops sun3_82586_netdev_ops = {
.ndo_open = sun3_82586_open,
.ndo_stop = sun3_82586_close,
.ndo_start_xmit = sun3_82586_send_packet,
.ndo_set_multicast_list = set_multicast_list,
.ndo_tx_timeout = sun3_82586_timeout,
.ndo_get_stats = sun3_82586_get_stats,
.ndo_validate_addr = eth_validate_addr,
.ndo_set_mac_address = eth_mac_addr,
.ndo_change_mtu = eth_change_mtu,
};

static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr)
{
int i, size, retval;
Expand Down Expand Up @@ -381,13 +393,8 @@ static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr)

printk("Memaddr: 0x%lx, Memsize: %d, IRQ %d\n",dev->mem_start,size, dev->irq);

dev->open = sun3_82586_open;
dev->stop = sun3_82586_close;
dev->get_stats = sun3_82586_get_stats;
dev->tx_timeout = sun3_82586_timeout;
dev->netdev_ops = &sun3_82586_netdev_ops;
dev->watchdog_timeo = HZ/20;
dev->hard_start_xmit = sun3_82586_send_packet;
dev->set_multicast_list = set_multicast_list;

dev->if_port = 0;
return 0;
Expand Down

0 comments on commit 7e4fdcb

Please sign in to comment.