Re: [PATCH 10/77] stir4200: convert to net_device_ops

Previous thread: [PATCH 24/77] usbnet: convert rtl driver to net_device_ops by Stephen Hemminger on Friday, March 20, 2009 - 10:35 pm. (4 messages)

Next thread: [PATCH 21/77] usbnet: convert catc to internal net_device_stats by Stephen Hemminger on Friday, March 20, 2009 - 10:35 pm. (2 messages)
From: Stephen Hemminger
Date: Friday, March 20, 2009 - 10:35 pm

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

--- a/drivers/net/irda/stir4200.c	2009-03-19 22:40:30.388964511 -0700
+++ b/drivers/net/irda/stir4200.c	2009-03-19 22:42:47.828091113 -0700
@@ -1007,6 +1007,13 @@ static int stir_net_ioctl(struct net_dev
 	return ret;
 }
 
+static const struct net_device_ops stir_netdev_ops = {
+	.ndo_open       = stir_net_open,
+	.ndo_stop       = stir_net_close,
+	.ndo_start_xmit = stir_hard_xmit,
+	.ndo_do_ioctl   = stir_net_ioctl,
+};
+
 /*
  * This routine is called by the USB subsystem for each new device
  * in the system. We need to check if the device is ours, and in
@@ -1054,10 +1061,7 @@ static int stir_probe(struct usb_interfa
 	irda_qos_bits_to_value(&stir->qos);
 
 	/* Override the network functions we need to use */
-	net->hard_start_xmit = stir_hard_xmit;
-	net->open            = stir_net_open;
-	net->stop            = stir_net_close;
-	net->do_ioctl        = stir_net_ioctl;
+	net->netdev_ops = &stir_netdev_ops;
 
 	ret = register_netdev(net);
 	if (ret != 0)

-- 

--

From: David Miller
Date: Saturday, March 21, 2009 - 7:34 pm

From: Stephen Hemminger <shemminger@vyatta.com>

Applied.
--

From: Samuel Ortiz
Date: Monday, March 23, 2009 - 4:34 am

-- 
Intel Open Source Technology Centre
http://oss.intel.com/
--

Previous thread: [PATCH 24/77] usbnet: convert rtl driver to net_device_ops by Stephen Hemminger on Friday, March 20, 2009 - 10:35 pm. (4 messages)

Next thread: [PATCH 21/77] usbnet: convert catc to internal net_device_stats by Stephen Hemminger on Friday, March 20, 2009 - 10:35 pm. (2 messages)