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>
This commit is contained in:
Kalle Valo 2012-03-12 13:23:14 +02:00
parent 06f33f13ac
commit 7433a49010

View File

@ -871,12 +871,13 @@ static int ath6kl_sdio_suspend(struct ath6kl *ar, struct cfg80211_wowlan *wow)
if (ret && ret != -ENOTCONN) if (ret && ret != -ENOTCONN)
ath6kl_err("wow suspend failed: %d\n", ret); ath6kl_err("wow suspend failed: %d\n", ret);
if (ret && (!ar->wow_suspend_mode || if (ret &&
ar->wow_suspend_mode == WLAN_POWER_STATE_DEEP_SLEEP)) (!ar->wow_suspend_mode ||
try_deepsleep = true; ar->wow_suspend_mode == WLAN_POWER_STATE_DEEP_SLEEP))
try_deepsleep = true;
else if (ret && else if (ret &&
ar->wow_suspend_mode == WLAN_POWER_STATE_CUT_PWR) ar->wow_suspend_mode == WLAN_POWER_STATE_CUT_PWR)
goto cut_pwr; goto cut_pwr;
if (!ret) if (!ret)
return 0; return 0;
} }