[PATCH 12/26] korina: convert to net_device_ops

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Alexander Beregalov
Date: Wednesday, April 15, 2009 - 3:52 pm

Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
 drivers/net/korina.c |   25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/drivers/net/korina.c b/drivers/net/korina.c
index 38d6649..dc23856 100644
--- a/drivers/net/korina.c
+++ b/drivers/net/korina.c
@@ -1081,6 +1081,21 @@ static int korina_close(struct net_device *dev)
 	return 0;
 }
 
+static const struct net_device_ops korina_netdev_ops = {
+	.ndo_open		= korina_open,
+	.ndo_stop		= korina_close,
+	.ndo_start_xmit		= korina_send_packet,
+	.ndo_set_multicast_list	= korina_multicast_list,
+	.ndo_tx_timeout		= korina_tx_timeout,
+	.ndo_do_ioctl		= korina_ioctl,
+	.ndo_change_mtu		= eth_change_mtu,
+	.ndo_validate_addr	= eth_validate_addr,
+	.ndo_set_mac_address	= eth_mac_addr,
+#ifdef CONFIG_NET_POLL_CONTROLLER
+	.ndo_poll_controller	= korina_poll_controller,
+#endif
+};
+
 static int korina_probe(struct platform_device *pdev)
 {
 	struct korina_device *bif = platform_get_drvdata(pdev);
@@ -1149,17 +1164,9 @@ static int korina_probe(struct platform_device *pdev)
 	dev->irq = lp->rx_irq;
 	lp->dev = dev;
 
-	dev->open = korina_open;
-	dev->stop = korina_close;
-	dev->hard_start_xmit = korina_send_packet;
-	dev->set_multicast_list = &korina_multicast_list;
+	dev->netdev_ops = &korina_netdev_ops;
 	dev->ethtool_ops = &netdev_ethtool_ops;
-	dev->tx_timeout = korina_tx_timeout;
 	dev->watchdog_timeo = TX_TIMEOUT;
-	dev->do_ioctl = &korina_ioctl;
-#ifdef CONFIG_NET_POLL_CONTROLLER
-	dev->poll_controller = korina_poll_controller;
-#endif
 	netif_napi_add(dev, &lp->napi, korina_poll, 64);
 
 	lp->phy_addr = (((lp->rx_irq == 0x2c? 1:0) << 8) | 0x05);
-- 
1.6.2.3

--
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
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 01/26] bmac: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 02/26] cpmac: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 03/26] dm9000: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 04/26] hplance: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 05/26] ibmveth: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 06/26] irda/au1k_ir: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 07/26] irda/pxaficp_ir: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 08/26] irda/sa1100_ir: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 09/26] iseries_veth: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 10/26] ixp2000/ixpdev: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 11/26] jazzsonic: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 12/26] korina: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 13/26] lib82596: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 14/26] mace: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 15/26] macmace: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 16/26] meth: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 17/26] mipsnet: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 18/26] mvme147: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 19/26] netx-eth: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 20/26] pasemi_mac: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 21/26] pci-skeleton: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 22/26] rionet: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 23/26] sb1250-mac: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 24/26] sgiseeq: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 25/26] smc911x: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:52 pm)
[PATCH 26/26] sun3lance: convert to net_device_ops, Alexander Beregalov, (Wed Apr 15, 3:53 pm)
Re: [PATCH 01/26] bmac: convert to net_device_ops, David Miller, (Thu Apr 16, 2:24 am)