* pull request: wireless-2.6 2009-05-29
@ 2009-05-29 13:28 John W. Linville
2009-05-29 22:16 ` David Miller
2009-05-30 4:59 ` David Miller
0 siblings, 2 replies; 4+ messages in thread
From: John W. Linville @ 2009-05-29 13:28 UTC (permalink / raw)
To: davem; +Cc: linux-wireless, linux-kernel
Dave,
Here are a couple of fixes that would be nice to have for 2.6.30 --
nothing very controversial. Each has a bugzilla.kernel.org entry listed
in the changelog.
Please let me know if there are problems!
Thanks,
John
---
Individual patches are available here:
http://www.kernel.org/pub/linux/kernel/people/linville/wireless-2.6/
---
The following changes since commit 4d3383d0adb6d1047fb9ee3edd9dc05e4d2184f0:
David S. Miller (1):
Merge branch 'master' of git://git.kernel.org/.../kaber/nf-2.6
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git master
John W. Linville (2):
at76c50x-usb: avoid mutex deadlock in at76_dwork_hw_scan
rtl8187: add USB ID for Linksys WUSB54GC-EU v2 USB wifi dongle
drivers/net/wireless/Kconfig | 1 +
drivers/net/wireless/at76c50x-usb.c | 12 ++++++------
drivers/net/wireless/rtl818x/rtl8187_dev.c | 2 ++
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wireless/Kconfig
index 8a08235..3d94e7d 100644
--- a/drivers/net/wireless/Kconfig
+++ b/drivers/net/wireless/Kconfig
@@ -430,6 +430,7 @@ config RTL8187
ASUS P5B Deluxe
Toshiba Satellite Pro series of laptops
Asus Wireless Link
+ Linksys WUSB54GC-EU
Thanks to Realtek for their support!
diff --git a/drivers/net/wireless/at76c50x-usb.c b/drivers/net/wireless/at76c50x-usb.c
index 744f4f4..8d93ca4 100644
--- a/drivers/net/wireless/at76c50x-usb.c
+++ b/drivers/net/wireless/at76c50x-usb.c
@@ -1873,18 +1873,18 @@ static void at76_dwork_hw_scan(struct work_struct *work)
if (ret != CMD_STATUS_COMPLETE) {
queue_delayed_work(priv->hw->workqueue, &priv->dwork_hw_scan,
SCAN_POLL_INTERVAL);
- goto exit;
+ mutex_unlock(&priv->mtx);
+ return;
}
- ieee80211_scan_completed(priv->hw, false);
-
if (is_valid_ether_addr(priv->bssid))
at76_join(priv);
- ieee80211_wake_queues(priv->hw);
-
-exit:
mutex_unlock(&priv->mtx);
+
+ ieee80211_scan_completed(priv->hw, false);
+
+ ieee80211_wake_queues(priv->hw);
}
static int at76_hw_scan(struct ieee80211_hw *hw,
diff --git a/drivers/net/wireless/rtl818x/rtl8187_dev.c b/drivers/net/wireless/rtl818x/rtl8187_dev.c
index bac6cfb..d51ba0a 100644
--- a/drivers/net/wireless/rtl818x/rtl8187_dev.c
+++ b/drivers/net/wireless/rtl818x/rtl8187_dev.c
@@ -71,6 +71,8 @@ static struct usb_device_id rtl8187_table[] __devinitdata = {
{USB_DEVICE(0x18E8, 0x6232), .driver_info = DEVICE_RTL8187},
/* AirLive */
{USB_DEVICE(0x1b75, 0x8187), .driver_info = DEVICE_RTL8187},
+ /* Linksys */
+ {USB_DEVICE(0x1737, 0x0073), .driver_info = DEVICE_RTL8187B},
{}
};
--
John W. Linville Someday the world will need a hero, and you
linville@tuxdriver.com might be all we have. Be ready.
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: pull request: wireless-2.6 2009-05-29
2009-05-29 13:28 pull request: wireless-2.6 2009-05-29 John W. Linville
@ 2009-05-29 22:16 ` David Miller
2009-05-30 4:48 ` John W. Linville
2009-05-30 4:59 ` David Miller
1 sibling, 1 reply; 4+ messages in thread
From: David Miller @ 2009-05-29 22:16 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, linux-kernel
From: "John W. Linville" <linville@tuxdriver.com>
Date: Fri, 29 May 2009 15:28:59 +0200
> Here are a couple of fixes that would be nice to have for 2.6.30 --
> nothing very controversial. Each has a bugzilla.kernel.org entry listed
> in the changelog.
>
> Please let me know if there are problems!
I know you're away and not at %100 but please do always CC:
netdev for your pull requests so that the attached patch gets
reviewed by networking folks and more importantly logged at:
http://patchwork.ozlabs.org/project/netdev/list/
so that I can track it properly.
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: pull request: wireless-2.6 2009-05-29
2009-05-29 22:16 ` David Miller
@ 2009-05-30 4:48 ` John W. Linville
0 siblings, 0 replies; 4+ messages in thread
From: John W. Linville @ 2009-05-30 4:48 UTC (permalink / raw)
To: David Miller; +Cc: linux-wireless, linux-kernel, netdev
On Fri, May 29, 2009 at 03:16:51PM -0700, David Miller wrote:
> From: "John W. Linville" <linville@tuxdriver.com>
> Date: Fri, 29 May 2009 15:28:59 +0200
>
> > Here are a couple of fixes that would be nice to have for 2.6.30 --
> > nothing very controversial. Each has a bugzilla.kernel.org entry listed
> > in the changelog.
> >
> > Please let me know if there are problems!
>
> I know you're away and not at %100 but please do always CC:
> netdev for your pull requests so that the attached patch gets
> reviewed by networking folks and more importantly logged at:
>
> http://patchwork.ozlabs.org/project/netdev/list/
>
> so that I can track it properly.
Ooops! Sorry...yes, not at 100%... :-)
--
John W. Linville Someday the world will need a hero, and you
linville@tuxdriver.com might be all we have. Be ready.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: pull request: wireless-2.6 2009-05-29
2009-05-29 13:28 pull request: wireless-2.6 2009-05-29 John W. Linville
2009-05-29 22:16 ` David Miller
@ 2009-05-30 4:59 ` David Miller
1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2009-05-30 4:59 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, linux-kernel, netdev
From: "John W. Linville" <linville@tuxdriver.com>
Date: Fri, 29 May 2009 15:28:59 +0200
> git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git master
Pulled, thanks a lot John.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-05-30 4:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-29 13:28 pull request: wireless-2.6 2009-05-29 John W. Linville
2009-05-29 22:16 ` David Miller
2009-05-30 4:48 ` John W. Linville
2009-05-30 4:59 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).