Browse Source

sunqe: Convert to net_device_ops.

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 16 years ago
parent
commit
ecd4137320
1 changed files with 9 additions and 5 deletions
  1. 9 5
      drivers/net/sunqe.c

+ 9 - 5
drivers/net/sunqe.c

@@ -829,6 +829,14 @@ fail:
 	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)
 
 
 	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)