netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] ieee1394: convert to net_device_ops
@ 2009-01-06 22:54 Stephen Hemminger
  2009-01-06 22:55 ` [PATCH 2/3] ieee1394: remove unneeded last_rx Stephen Hemminger
  2009-01-06 23:20 ` [PATCH 1/3] ieee1394: convert to net_device_ops Stefan Richter
  0 siblings, 2 replies; 6+ messages in thread
From: Stephen Hemminger @ 2009-01-06 22:54 UTC (permalink / raw)
  To: krh, stefanr, David Miller; +Cc: linux1394-devel, netdev

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

--- 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);
 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-01-06 23:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-06 22:54 [PATCH 1/3] ieee1394: convert to net_device_ops Stephen Hemminger
2009-01-06 22:55 ` [PATCH 2/3] ieee1394: remove unneeded last_rx Stephen Hemminger
2009-01-06 22:56   ` [PATCH 3/3] ieee1394: use internal network device stats Stephen Hemminger
2009-01-06 23:23     ` Stefan Richter
2009-01-06 23:22   ` [PATCH 2/3] ieee1394: remove unneeded last_rx Stefan Richter
2009-01-06 23:20 ` [PATCH 1/3] ieee1394: convert to net_device_ops Stefan Richter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).