diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-09-14 13:50:06 +0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-09-18 11:41:18 +0400 |
commit | 5b07e07fd0a9432b6910badfdb084112be4390af (patch) | |
tree | 8057f8897d81428ad44b89d9b8c12fd9a9b44792 /drivers/net/wireless/ath/ath10k/htt.c | |
parent | bd8bdbb6902491518f36491a6bac9b6e2cdb0b60 (diff) | |
download | linux-5b07e07fd0a9432b6910badfdb084112be4390af.tar.xz |
ath10k: fix checkpatch warnings about parenthesis alignment
CHECK: Alignment should match open parenthesis
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/htt.c')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/htt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/htt.c b/drivers/net/wireless/ath/ath10k/htt.c index 87daae11f116..56cb4aceb383 100644 --- a/drivers/net/wireless/ath/ath10k/htt.c +++ b/drivers/net/wireless/ath/ath10k/htt.c @@ -101,7 +101,7 @@ int ath10k_htt_setup(struct ath10k_htt *htt) return status; status = wait_for_completion_timeout(&htt->target_version_received, - HTT_TARGET_VERSION_TIMEOUT_HZ); + HTT_TARGET_VERSION_TIMEOUT_HZ); if (status <= 0) { ath10k_warn(ar, "htt version request timed out\n"); return -ETIMEDOUT; |