ath10k: fix indenting in ath10k_wmi_update_noa()

Commit 59ae1d127a ("networking: introduce and use skb_put_data()") introduced
a new checkpatch warning:

drivers/net/wireless/ath/ath10k/wmi.c:3308: code indent should use tabs where possible

Fix that.

Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
Kalle Valo 2017-07-06 09:42:20 +03:00
parent 17d9aa66b0
commit 5784f87df1
1 changed files with 1 additions and 1 deletions

View File

@ -3305,7 +3305,7 @@ static void ath10k_wmi_update_noa(struct ath10k *ar, struct ath10k_vif *arvif,
if (arvif->u.ap.noa_data) if (arvif->u.ap.noa_data)
if (!pskb_expand_head(bcn, 0, arvif->u.ap.noa_len, GFP_ATOMIC)) if (!pskb_expand_head(bcn, 0, arvif->u.ap.noa_len, GFP_ATOMIC))
skb_put_data(bcn, arvif->u.ap.noa_data, skb_put_data(bcn, arvif->u.ap.noa_data,
arvif->u.ap.noa_len); arvif->u.ap.noa_len);
} }
static int ath10k_wmi_op_pull_swba_ev(struct ath10k *ar, struct sk_buff *skb, static int ath10k_wmi_op_pull_swba_ev(struct ath10k *ar, struct sk_buff *skb,