Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
This commit is contained in:
commit
e8573758d5
3 changed files with 9 additions and 6 deletions
|
@ -430,6 +430,7 @@ config RTL8187
|
||||||
ASUS P5B Deluxe
|
ASUS P5B Deluxe
|
||||||
Toshiba Satellite Pro series of laptops
|
Toshiba Satellite Pro series of laptops
|
||||||
Asus Wireless Link
|
Asus Wireless Link
|
||||||
|
Linksys WUSB54GC-EU
|
||||||
|
|
||||||
Thanks to Realtek for their support!
|
Thanks to Realtek for their support!
|
||||||
|
|
||||||
|
|
|
@ -1873,18 +1873,18 @@ static void at76_dwork_hw_scan(struct work_struct *work)
|
||||||
if (ret != CMD_STATUS_COMPLETE) {
|
if (ret != CMD_STATUS_COMPLETE) {
|
||||||
queue_delayed_work(priv->hw->workqueue, &priv->dwork_hw_scan,
|
queue_delayed_work(priv->hw->workqueue, &priv->dwork_hw_scan,
|
||||||
SCAN_POLL_INTERVAL);
|
SCAN_POLL_INTERVAL);
|
||||||
goto exit;
|
mutex_unlock(&priv->mtx);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ieee80211_scan_completed(priv->hw, false);
|
|
||||||
|
|
||||||
if (is_valid_ether_addr(priv->bssid))
|
if (is_valid_ether_addr(priv->bssid))
|
||||||
at76_join(priv);
|
at76_join(priv);
|
||||||
|
|
||||||
ieee80211_wake_queues(priv->hw);
|
|
||||||
|
|
||||||
exit:
|
|
||||||
mutex_unlock(&priv->mtx);
|
mutex_unlock(&priv->mtx);
|
||||||
|
|
||||||
|
ieee80211_scan_completed(priv->hw, false);
|
||||||
|
|
||||||
|
ieee80211_wake_queues(priv->hw);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int at76_hw_scan(struct ieee80211_hw *hw,
|
static int at76_hw_scan(struct ieee80211_hw *hw,
|
||||||
|
|
|
@ -71,6 +71,8 @@ static struct usb_device_id rtl8187_table[] __devinitdata = {
|
||||||
{USB_DEVICE(0x18E8, 0x6232), .driver_info = DEVICE_RTL8187},
|
{USB_DEVICE(0x18E8, 0x6232), .driver_info = DEVICE_RTL8187},
|
||||||
/* AirLive */
|
/* AirLive */
|
||||||
{USB_DEVICE(0x1b75, 0x8187), .driver_info = DEVICE_RTL8187},
|
{USB_DEVICE(0x1b75, 0x8187), .driver_info = DEVICE_RTL8187},
|
||||||
|
/* Linksys */
|
||||||
|
{USB_DEVICE(0x1737, 0x0073), .driver_info = DEVICE_RTL8187B},
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue