Skip to content

Commit

Permalink
ath6kl: fix open parenthesis alignment in ath6kl_sdio_suspend()
Browse files Browse the repository at this point in the history
ath6kl/sdio.c:875: CHECK: Alignment should match open parenthesis

Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
  • Loading branch information
Kalle Valo committed Mar 13, 2012
1 parent 06f33f1 commit 7433a49
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/net/wireless/ath/ath6kl/sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -871,12 +871,13 @@ static int ath6kl_sdio_suspend(struct ath6kl *ar, struct cfg80211_wowlan *wow)
if (ret && ret != -ENOTCONN)
ath6kl_err("wow suspend failed: %d\n", ret);

if (ret && (!ar->wow_suspend_mode ||
ar->wow_suspend_mode == WLAN_POWER_STATE_DEEP_SLEEP))
try_deepsleep = true;
if (ret &&
(!ar->wow_suspend_mode ||
ar->wow_suspend_mode == WLAN_POWER_STATE_DEEP_SLEEP))
try_deepsleep = true;
else if (ret &&
ar->wow_suspend_mode == WLAN_POWER_STATE_CUT_PWR)
goto cut_pwr;
goto cut_pwr;
if (!ret)
return 0;
}
Expand Down

0 comments on commit 7433a49

Please sign in to comment.