|
@@ -8760,7 +8760,7 @@ int wlan_hdd_request_pre_cac(uint8_t channel)
|
|
|
}
|
|
|
|
|
|
freq = cds_chan_to_freq(pre_cac_chan);
|
|
|
- chan = __ieee80211_get_channel(wiphy, freq);
|
|
|
+ chan = ieee80211_get_channel(wiphy, freq);
|
|
|
if (!chan) {
|
|
|
hdd_err("channel converion failed");
|
|
|
goto stop_close_pre_cac_adapter;
|
|
@@ -14003,7 +14003,7 @@ struct cfg80211_bss *wlan_hdd_cfg80211_inform_bss_frame(hdd_adapter_t *pAdapter,
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
|
- chan = __ieee80211_get_channel(wiphy, freq);
|
|
|
+ chan = ieee80211_get_channel(wiphy, freq);
|
|
|
/* When the band is changed on the fly using the GUI, three things are done
|
|
|
* 1. scan abort
|
|
|
* 2. flush scan results from cache
|
|
@@ -14019,7 +14019,7 @@ struct cfg80211_bss *wlan_hdd_cfg80211_inform_bss_frame(hdd_adapter_t *pAdapter,
|
|
|
* callback is very small then band change will not reflect in SME and SME
|
|
|
* reports to HDD all the channels correponding to previous band.this is due
|
|
|
* to race condition.but those channels are invalid to the new band and so
|
|
|
- * this function __ieee80211_get_channel will return NULL.Each time we
|
|
|
+ * this function ieee80211_get_channel will return NULL.Each time we
|
|
|
* report scan result with this pointer null warning kernel trace is printed.
|
|
|
* if the scan results contain large number of APs continuosly kernel
|
|
|
* warning trace is printed and it will lead to apps watch dog bark.
|
|
@@ -15883,7 +15883,7 @@ static int __wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
|
|
|
*/
|
|
|
if (!ok) {
|
|
|
struct ieee80211_channel *chan =
|
|
|
- __ieee80211_get_channel(wiphy,
|
|
|
+ ieee80211_get_channel(wiphy,
|
|
|
wlan_chan_to_freq(req->channel->hw_value));
|
|
|
struct cfg80211_bss *bss;
|
|
|
|