[PATCH 22/26] rionet: 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/rionet.c |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/drivers/net/rionet.c b/drivers/net/rionet.c
index ec59e29..8702e7a 100644
--- a/drivers/net/rionet.c
+++ b/drivers/net/rionet.c
@@ -428,6 +428,15 @@ static const struct ethtool_ops rionet_ethtool_ops = {
 	.get_link = ethtool_op_get_link,
 };
 
+static const struct net_device_ops rionet_netdev_ops = {
+	.ndo_open		= rionet_open,
+	.ndo_stop		= rionet_close,
+	.ndo_start_xmit		= rionet_start_xmit,
+	.ndo_change_mtu		= eth_change_mtu,
+	.ndo_validate_addr	= eth_validate_addr,
+	.ndo_set_mac_address	= eth_mac_addr,
+};
+
 static int rionet_setup_netdev(struct rio_mport *mport)
 {
 	int rc = 0;
@@ -466,10 +475,7 @@ static int rionet_setup_netdev(struct rio_mport *mport)
 	ndev->dev_addr[4] = device_id >> 8;
 	ndev->dev_addr[5] = device_id & 0xff;
 
-	/* Fill in the driver function table */
-	ndev->open = &rionet_open;
-	ndev->hard_start_xmit = &rionet_start_xmit;
-	ndev->stop = &rionet_close;
+	ndev->netdev_ops = &rionet_netdev_ops;
 	ndev->mtu = RIO_MAX_MSG_SIZE - 14;
 	ndev->features = NETIF_F_LLTX;
 	SET_ETHTOOL_OPS(ndev, &rionet_ethtool_ops);
-- 
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)