diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2016-04-13 14:13:21 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2016-04-14 17:30:51 +0300 |
commit | 14e105cd4085c7bbf42f0eef8c677ad6c7d78a83 (patch) | |
tree | 59cfb8c5ef278defaf33ca0fd33772bd2e866df8 /drivers/net/wireless/ath/ath10k/wmi.c | |
parent | cfe9011a05a8de56f97d15a24977639fe6534e9c (diff) |
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/wmi.c')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c index e8d9a3e5c2df..d64e8681898d 100644 --- a/drivers/net/wireless/ath/ath10k/wmi.c +++ b/drivers/net/wireless/ath/ath10k/wmi.c @@ -1808,7 +1808,7 @@ int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id) ret = -ESHUTDOWN; (ret != -EAGAIN); - }), 3*HZ); + }), 3 * HZ); if (ret) dev_kfree_skb_any(skb); |