|
@@ -3703,6 +3703,7 @@ static void brcmf_configure_wowl(struct brcmf_cfg80211_info *cfg,
|
|
|
struct cfg80211_wowlan *wowl)
|
|
|
{
|
|
|
u32 wowl_config;
|
|
|
+ struct brcmf_wowl_wakeind_le wowl_wakeind;
|
|
|
u32 i;
|
|
|
|
|
|
brcmf_dbg(TRACE, "Suspend, wowl config.\n");
|
|
@@ -3744,8 +3745,9 @@ static void brcmf_configure_wowl(struct brcmf_cfg80211_info *cfg,
|
|
|
if (!test_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state))
|
|
|
wowl_config |= BRCMF_WOWL_UNASSOC;
|
|
|
|
|
|
- brcmf_fil_iovar_data_set(ifp, "wowl_wakeind", "clear",
|
|
|
- sizeof(struct brcmf_wowl_wakeind_le));
|
|
|
+ memcpy(&wowl_wakeind, "clear", 6);
|
|
|
+ brcmf_fil_iovar_data_set(ifp, "wowl_wakeind", &wowl_wakeind,
|
|
|
+ sizeof(wowl_wakeind));
|
|
|
brcmf_fil_iovar_int_set(ifp, "wowl", wowl_config);
|
|
|
brcmf_fil_iovar_int_set(ifp, "wowl_activate", 1);
|
|
|
brcmf_bus_wowl_config(cfg->pub->bus_if, true);
|