diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2016-04-13 13:13:21 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2016-04-14 16:30:51 +0200 |
commit | 14e105cd4085c7bbf42f0eef8c677ad6c7d78a83 (patch) | |
tree | 59cfb8c5ef278defaf33ca0fd33772bd2e866df8 /drivers/net/wireless/ath/ath10k/htt.c | |
parent | ath10k: remove MSI range support (diff) | |
download | linux-14e105cd4085c7bbf42f0eef8c677ad6c7d78a83.tar.xz linux-14e105cd4085c7bbf42f0eef8c677ad6c7d78a83.zip |
ath10k: fix checkpatch warnings related to spaces
Fix checkpatch warnings about use of spaces with operators:
spaces preferred around that '*' (ctx:VxV)
This has been recently added to checkpatch.
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 17a3008d9ab1..ee79512b1fcc 100644 --- a/drivers/net/wireless/ath/ath10k/htt.c +++ b/drivers/net/wireless/ath/ath10k/htt.c @@ -208,7 +208,7 @@ int ath10k_htt_init(struct ath10k *ar) return 0; } -#define HTT_TARGET_VERSION_TIMEOUT_HZ (3*HZ) +#define HTT_TARGET_VERSION_TIMEOUT_HZ (3 * HZ) static int ath10k_htt_verify_version(struct ath10k_htt *htt) { |