[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1240062266-4339-1-git-send-email-dbaryshkov@gmail.com>
Date: Sat, 18 Apr 2009 17:44:26 +0400
From: Dmitry Eremin-Solenikov <dbaryshkov@...il.com>
To: samuel@...tiz.org
Cc: netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>,
Dmitry Eremin-Solenikov <dbaryshkov@...il.com>
Subject: [PATCH] irda: convert pxaficp device to net_device_ops
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@...il.com>
---
drivers/net/irda/pxaficp_ir.c | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/drivers/net/irda/pxaficp_ir.c b/drivers/net/irda/pxaficp_ir.c
index e775338..743952d 100644
--- a/drivers/net/irda/pxaficp_ir.c
+++ b/drivers/net/irda/pxaficp_ir.c
@@ -797,6 +797,14 @@ static int pxa_irda_init_iobuf(iobuff_t *io, int size)
return io->head ? 0 : -ENOMEM;
}
+static const struct net_device_ops pxa_irda_ops = {
+ .ndo_start_xmit = pxa_irda_hard_xmit,
+ .ndo_open = pxa_irda_start,
+ .ndo_stop = pxa_irda_stop,
+ .ndo_do_ioctl = pxa_irda_ioctl,
+};
+
+
static int pxa_irda_probe(struct platform_device *pdev)
{
struct net_device *dev;
@@ -845,10 +853,7 @@ static int pxa_irda_probe(struct platform_device *pdev)
if (err)
goto err_startup;
- dev->hard_start_xmit = pxa_irda_hard_xmit;
- dev->open = pxa_irda_start;
- dev->stop = pxa_irda_stop;
- dev->do_ioctl = pxa_irda_ioctl;
+ dev->netdev_ops = &pxa_irda_ops;
irda_init_max_qos_capabilies(&si->qos);
--
1.6.2.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists