if (dhd && dhd->pub.up) {
memcpy(&dhd->pub.dhd_cspec, cspec, sizeof(wl_country_t));
#ifdef WL_CFG80211
- wl_update_wiphybands(NULL, cspec->ccode);
+ wl_update_wiphybands(NULL);
#endif
}
}
if (dhd && dhd->pub.up) {
#ifdef WL_CFG80211
- wl_update_wiphybands(NULL, NULL);
+ wl_update_wiphybands(NULL);
#endif
}
}
return err;
}
-s32 wl_update_wiphybands(struct wl_priv *wl, char *country_code)
+s32 wl_update_wiphybands(struct wl_priv *wl)
{
struct wiphy *wiphy;
struct net_device *dev;
int nmode = 0;
int bw_cap = 0;
int index = 0;
- struct regulatory_request *new_request;
bool rollback_lock = false;
WL_DBG(("Entry"));
wiphy_apply_custom_regulatory(wiphy, &brcm_regdom);
- if (country_code != NULL) {
- WL_DBG(("country_code[0]=%c, country_code[1]=%c\n", country_code[0], country_code[1]));
- /* Allocate a requlatory request to update cfg80211 for the supported channels */
- new_request = kzalloc(sizeof(struct regulatory_request),
- GFP_KERNEL);
- if (!new_request) {
- WL_ERR(("error Memory alloc for requlatory request failed\n"));
- err = -ENOMEM;
- } else {
- new_request->alpha2[0] = country_code[0];
- new_request->alpha2[1] = country_code[1];
- WL_DBG(("Send an event to cfg80211 to update supplicant to take the new channel list"));
- nl80211_send_reg_change_event(new_request);
- kfree(new_request);
- }
- }
-
end_bands:
if (rollback_lock)
mutex_unlock(&wl->usr_sync);
if (unlikely(err && err != -EINPROGRESS)) {
WL_ERR(("wl_config_ifmode failed\n"));
}
- err = wl_update_wiphybands(wl, NULL);
+ err = wl_update_wiphybands(wl);
if (unlikely(err)) {
WL_ERR(("wl_update_wiphybands failed\n"));
}
extern s32 wl_mode_to_nl80211_iftype(s32 mode);
int wl_cfg80211_do_driver_init(struct net_device *net);
void wl_cfg80211_enable_trace(int level);
-extern s32 wl_update_wiphybands(struct wl_priv *wl, char *country_code);
+extern s32 wl_update_wiphybands(struct wl_priv *wl);
extern s32 wl_cfg80211_if_is_group_owner(void);
-extern void nl80211_send_reg_change_event(struct regulatory_request *request);
#endif /* _wl_cfg80211_h_ */