diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-12 07:23:14 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-13 08:18:34 -0400 |
commit | 7433a49010fbb637de6ce14080fd89067156ccb7 (patch) | |
tree | efaff18b066ac11df1e95195988035966f352454 | |
parent | 06f33f13ac2562cddf44285bfdea6cfb0cdd3515 (diff) |
ath6kl: fix open parenthesis alignment in ath6kl_sdio_suspend()
ath6kl/sdio.c:875: CHECK: Alignment should match open parenthesis
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/sdio.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/sdio.c b/drivers/net/wireless/ath/ath6kl/sdio.c index 5a03082ee589..53528648b425 100644 --- a/drivers/net/wireless/ath/ath6kl/sdio.c +++ b/drivers/net/wireless/ath/ath6kl/sdio.c | |||
@@ -871,12 +871,13 @@ static int ath6kl_sdio_suspend(struct ath6kl *ar, struct cfg80211_wowlan *wow) | |||
871 | if (ret && ret != -ENOTCONN) | 871 | if (ret && ret != -ENOTCONN) |
872 | ath6kl_err("wow suspend failed: %d\n", ret); | 872 | ath6kl_err("wow suspend failed: %d\n", ret); |
873 | 873 | ||
874 | if (ret && (!ar->wow_suspend_mode || | 874 | if (ret && |
875 | ar->wow_suspend_mode == WLAN_POWER_STATE_DEEP_SLEEP)) | 875 | (!ar->wow_suspend_mode || |
876 | try_deepsleep = true; | 876 | ar->wow_suspend_mode == WLAN_POWER_STATE_DEEP_SLEEP)) |
877 | try_deepsleep = true; | ||
877 | else if (ret && | 878 | else if (ret && |
878 | ar->wow_suspend_mode == WLAN_POWER_STATE_CUT_PWR) | 879 | ar->wow_suspend_mode == WLAN_POWER_STATE_CUT_PWR) |
879 | goto cut_pwr; | 880 | goto cut_pwr; |
880 | if (!ret) | 881 | if (!ret) |
881 | return 0; | 882 | return 0; |
882 | } | 883 | } |