Skip to content

Commit

Permalink
ath6kl: Move ath6kl_cfg80211_stop() call specific to deep sleep and c…
Browse files Browse the repository at this point in the history
…ut pwr

ath6kl_cfg80211_stop() call is not applicable for WOW mode. Hence moving
this call to deep sleep and cut pwr specific cases.

Signed-off-by: Raja Mani <rmani@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
  • Loading branch information
Raja Mani authored and Kalle Valo committed Nov 11, 2011
1 parent dd6c0c6 commit 524441e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions drivers/net/wireless/ath/ath6kl/cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -1759,10 +1759,11 @@ int ath6kl_cfg80211_suspend(struct ath6kl *ar,
{
int ret;

ath6kl_cfg80211_stop(ar);

switch (mode) {
case ATH6KL_CFG_SUSPEND_DEEPSLEEP:

ath6kl_cfg80211_stop(ar);

/* save the current power mode before enabling power save */
ar->wmi->saved_pwr_mode = ar->wmi->pwr_mode;

Expand All @@ -1777,6 +1778,9 @@ int ath6kl_cfg80211_suspend(struct ath6kl *ar,
break;

case ATH6KL_CFG_SUSPEND_CUTPOWER:

ath6kl_cfg80211_stop(ar);

if (ar->state == ATH6KL_STATE_OFF) {
ath6kl_dbg(ATH6KL_DBG_SUSPEND,
"suspend hw off, no action for cutpower\n");
Expand Down

0 comments on commit 524441e

Please sign in to comment.