Commit ecd41373 authored by David S. Miller's avatar David S. Miller

sunqe: Convert to net_device_ops.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c7670718
...@@ -829,6 +829,14 @@ static struct sunqec * __devinit get_qec(struct of_device *child) ...@@ -829,6 +829,14 @@ static struct sunqec * __devinit get_qec(struct of_device *child)
return NULL; return NULL;
} }
static const struct net_device_ops qec_ops = {
.ndo_open = qe_open,
.ndo_stop = qe_close,
.ndo_start_xmit = qe_start_xmit,
.ndo_set_multicast_list = qe_set_multicast,
.ndo_tx_timeout = qe_tx_timeout,
};
static int __devinit qec_ether_init(struct of_device *op) static int __devinit qec_ether_init(struct of_device *op)
{ {
static unsigned version_printed; static unsigned version_printed;
...@@ -893,15 +901,11 @@ static int __devinit qec_ether_init(struct of_device *op) ...@@ -893,15 +901,11 @@ static int __devinit qec_ether_init(struct of_device *op)
SET_NETDEV_DEV(dev, &op->dev); SET_NETDEV_DEV(dev, &op->dev);
dev->open = qe_open;
dev->stop = qe_close;
dev->hard_start_xmit = qe_start_xmit;
dev->set_multicast_list = qe_set_multicast;
dev->tx_timeout = qe_tx_timeout;
dev->watchdog_timeo = 5*HZ; dev->watchdog_timeo = 5*HZ;
dev->irq = op->irqs[0]; dev->irq = op->irqs[0];
dev->dma = 0; dev->dma = 0;
dev->ethtool_ops = &qe_ethtool_ops; dev->ethtool_ops = &qe_ethtool_ops;
dev->netdev_ops = &qec_ops;
res = register_netdev(dev); res = register_netdev(dev);
if (res) if (res)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment