ath6kl: fix open parenthesis alignment in ath6kl_sdio_suspend()
authorKalle Valo <kvalo@qca.qualcomm.com>
Mon, 12 Mar 2012 11:23:14 +0000 (13:23 +0200)
committerKalle Valo <kvalo@qca.qualcomm.com>
Tue, 13 Mar 2012 12:18:34 +0000 (14:18 +0200)
ath6kl/sdio.c:875: CHECK: Alignment should match open parenthesis

Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/sdio.c

index 5a03082..5352864 100644 (file)
@@ -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;
        }