[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20090811153354.GQ19257@buzzloop.caiaq.de>
Date: Tue, 11 Aug 2009 17:33:54 +0200
From: Daniel Mack <daniel@...aq.de>
To: libertas-dev@...ts.infradead.org
Cc: Roel Kluin <roel.kluin@...il.com>,
"John W. Linville" <linville@...driver.com>, netdev@...r.kernel.org
Subject: Re: [PATCH] libertas: name the network device wlan%d
On Tue, Aug 11, 2009 at 04:10:51PM +0100, Bob Dunlop wrote:
> On Tue, Aug 11 at 04:13, Daniel Mack wrote:
> > Devices created by the libertas driver are currently called eth%d. Which
> > is wrong, because the device does not at all have anything to do with
> > Ethernet. And it is also confusing when used on devices with more than
> > one network device.
> >
> > Fix this by calling it wlan%d.
>
> Just a nit pick but shouldn't the patch also include:
>
> @@ -1176,7 +1176,7 @@
> /* Allocate an Ethernet device and register it */
> dev = alloc_etherdev(sizeof(struct lbs_private));
> if (!dev) {
> - lbs_pr_err("init ethX device failed\n");
> + lbs_pr_err("init wlanX device failed\n");
> goto done;
> }
> priv = netdev_priv(dev);
>
>
> So collars and cuffs match.
Oh, of course.
Thanks,
Daniel
>From 63ace51c76ef513553f4b30da80603f1f81114d0 Mon Sep 17 00:00:00 2001
From: Daniel Mack <daniel@...aq.de>
Date: Tue, 11 Aug 2009 16:09:34 +0200
Subject: [PATCH] libertas: name the network device wlan%d
Devices created by the libertas driver are currently called eth%d. Which
is wrong, because the device does not at all have anything to do with
Ethernet. And it is also confusing when used on devices with more than
one network device.
Fix this by calling it wlan%d.
Signed-off-by: Daniel Mack <daniel@...aq.de>
Cc: Roel Kluin <roel.kluin@...il.com>
Cc: John W. Linville <linville@...driver.com>
Cc: netdev@...r.kernel.org
---
drivers/net/wireless/libertas/main.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/net/wireless/libertas/main.c b/drivers/net/wireless/libertas/main.c
index 89575e4..8df1cfd 100644
--- a/drivers/net/wireless/libertas/main.c
+++ b/drivers/net/wireless/libertas/main.c
@@ -1176,7 +1176,7 @@ struct lbs_private *lbs_add_card(void *card, struct device *dmdev)
/* Allocate an Ethernet device and register it */
dev = alloc_etherdev(sizeof(struct lbs_private));
if (!dev) {
- lbs_pr_err("init ethX device failed\n");
+ lbs_pr_err("init wlanX device failed\n");
goto done;
}
priv = netdev_priv(dev);
@@ -1204,6 +1204,7 @@ struct lbs_private *lbs_add_card(void *card, struct device *dmdev)
SET_NETDEV_DEV(dev, dmdev);
priv->rtap_net_dev = NULL;
+ strcpy(dev->name, "wlan%d");
lbs_deb_thread("Starting main thread...\n");
init_waitqueue_head(&priv->waitq);
--
1.6.3.3
--
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