diff mbox

[13/33] e1000e: convert to net_device_ops

Message ID 20081117234355.888854880@vyatta.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

stephen hemminger Nov. 17, 2008, 11:42 p.m. UTC
Convert e1000e to network device ops.

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

Comments

David Miller Nov. 20, 2008, 5:58 a.m. UTC | #1
From: Stephen Hemminger <shemminger@vyatta.com>
Date: Mon, 17 Nov 2008 15:42:20 -0800

> Convert e1000e to network device ops.
> 
> Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>

Applied.
--
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
diff mbox

Patch

--- a/drivers/net/e1000e/netdev.c	2008-11-17 07:57:18.000000000 -0800
+++ b/drivers/net/e1000e/netdev.c	2008-11-17 10:25:30.000000000 -0800
@@ -4686,6 +4686,25 @@  static void e1000_eeprom_checks(struct e
 	}
 }
 
+static const struct net_device_ops e1000e_netdev_ops = {
+	.open			= e1000_open,
+	.stop			= e1000_close,
+	.get_stats		= e1000_get_stats,
+	.set_multicast_list	= e1000_set_multi,
+	.set_mac_address	= e1000_set_mac,
+	.change_mtu		= e1000_change_mtu,
+	.do_ioctl		= e1000_ioctl,
+	.tx_timeout		= e1000_tx_timeout,
+	.validate_addr		= eth_validate_addr,
+
+	.vlan_rx_register	= e1000_vlan_rx_register,
+	.vlan_rx_add_vid	= e1000_vlan_rx_add_vid,
+	.vlan_rx_kill_vid	= e1000_vlan_rx_kill_vid,
+#ifdef CONFIG_NET_POLL_CONTROLLER
+	.poll_controller	= e1000_netpoll,
+#endif
+};
+
 /**
  * e1000_probe - Device Initialization Routine
  * @pdev: PCI device information struct
@@ -4783,24 +4802,11 @@  static int __devinit e1000_probe(struct 
 	}
 
 	/* construct the net_device struct */
-	netdev->open			= &e1000_open;
-	netdev->stop			= &e1000_close;
+	netdev->netdev_ops		= &e1000e_netdev_ops;
 	netdev->hard_start_xmit		= &e1000_xmit_frame;
-	netdev->get_stats		= &e1000_get_stats;
-	netdev->set_multicast_list	= &e1000_set_multi;
-	netdev->set_mac_address		= &e1000_set_mac;
-	netdev->change_mtu		= &e1000_change_mtu;
-	netdev->do_ioctl		= &e1000_ioctl;
 	e1000e_set_ethtool_ops(netdev);
-	netdev->tx_timeout		= &e1000_tx_timeout;
 	netdev->watchdog_timeo		= 5 * HZ;
 	netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
-	netdev->vlan_rx_register	= e1000_vlan_rx_register;
-	netdev->vlan_rx_add_vid		= e1000_vlan_rx_add_vid;
-	netdev->vlan_rx_kill_vid	= e1000_vlan_rx_kill_vid;
-#ifdef CONFIG_NET_POLL_CONTROLLER
-	netdev->poll_controller		= e1000_netpoll;
-#endif
 	strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
 
 	netdev->mem_start = mmio_start;