diff mbox

[1/3] ieee1394: convert to net_device_ops

Message ID 20090106145456.37ecedaa@extreme
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

stephen hemminger Jan. 6, 2009, 10:54 p.m. UTC
Convert to net_device_ops.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>

---
My goal is to have all drivers found using make allmodconfig using net_device_ops
by 2.6.28-rc2

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Stefan Richter Jan. 6, 2009, 11:20 p.m. UTC | #1
Stephen Hemminger wrote:
> Convert to net_device_ops.
> 
> Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
> 
> ---
> My goal is to have all drivers found using make allmodconfig using net_device_ops
> by 2.6.28-rc2

You mean 2.6.29-rc2?

Is David going to take patches 1/3...3/3?  If so, here is:
Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de>

Or shall I take them through linux1394-2.6.git?
diff mbox

Patch

--- a/drivers/ieee1394/eth1394.c	2009-01-03 20:19:30.123514679 -0800
+++ b/drivers/ieee1394/eth1394.c	2009-01-03 20:21:51.018766544 -0800
@@ -516,16 +516,20 @@  static const struct header_ops ether1394
 	.parse		= ether1394_header_parse,
 };
 
+static const struct net_device_ops ether1394_netdev_ops = {
+	.ndo_open	= ether1394_open,
+	.ndo_stop	= ether1394_stop,
+	.ndo_start_xmit	= ether1394_tx,
+	.ndo_get_stats	= ether1394_stats,
+	.ndo_tx_timeout	= ether1394_tx_timeout,
+	.ndo_change_mtu	= ether1394_change_mtu,
+};
+
 static void ether1394_init_dev(struct net_device *dev)
 {
-	dev->open		= ether1394_open;
-	dev->stop		= ether1394_stop;
-	dev->hard_start_xmit	= ether1394_tx;
-	dev->get_stats		= ether1394_stats;
-	dev->tx_timeout		= ether1394_tx_timeout;
-	dev->change_mtu		= ether1394_change_mtu;
 
 	dev->header_ops		= &ether1394_header_ops;
+	dev->netdev_ops		= &ether1394_netdev_ops;
 
 	SET_ETHTOOL_OPS(dev, &ethtool_ops);