diff options
author | Dmitry Shmidt <dimitrysh@google.com> | 2012-08-22 16:09:09 -0700 |
---|---|---|
committer | Dmitry Shmidt <dimitrysh@google.com> | 2012-08-23 11:33:16 -0700 |
commit | eca0e767ef4c74bd0b6ad6a7384fa2869a2a96b9 (patch) | |
tree | 16e686f873ab33d8b700a8a584f166df6781ac20 /drivers | |
parent | 50701ac7b937f54b689af49de116c9cbd41b0286 (diff) | |
download | kernel_samsung_crespo-eca0e767ef4c74bd0b6ad6a7384fa2869a2a96b9.zip kernel_samsung_crespo-eca0e767ef4c74bd0b6ad6a7384fa2869a2a96b9.tar.gz kernel_samsung_crespo-eca0e767ef4c74bd0b6ad6a7384fa2869a2a96b9.tar.bz2 |
net: wireless: bcmdhd: Remove WIPHY_FLAG_SUPPORTS_FW_ROAM flag
If driver advertises FW_ROAM, the supplicant wouldn't send
the BSSID & Freq in the connect command allowing the driver
to choose the AP to connect to. But unless we support ROAM_CACHE
in firware this will delay the ASSOC as the FW need to do a full
scan before attempting to connect.
Change-Id: Iebc88a60243196b9ad27b8302f2b1473710308f6
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/bcmdhd/wl_cfg80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/bcmdhd/wl_cfg80211.c b/drivers/net/wireless/bcmdhd/wl_cfg80211.c index 0468954..9af2c1b 100644 --- a/drivers/net/wireless/bcmdhd/wl_cfg80211.c +++ b/drivers/net/wireless/bcmdhd/wl_cfg80211.c @@ -4650,7 +4650,7 @@ static s32 wl_setup_wiphy(struct wireless_dev *wdev, struct device *sdiofunc_dev #endif WIPHY_FLAG_4ADDR_STATION; #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0) - wdev->wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM; + /* wdev->wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM; */ #endif WL_DBG(("Registering custom regulatory)\n")); wdev->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |