summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath
diff options
context:
space:
mode:
authorKalle Valo <kvalo@qca.qualcomm.com>2014-09-14 13:50:28 +0400
committerKalle Valo <kvalo@qca.qualcomm.com>2014-09-18 11:46:12 +0400
commitac04506c73d19dc8bdc167f79eef05d6bae5b644 (patch)
treeff0b39378780ba586b245f514a161ed07e611ebc /drivers/net/wireless/ath
parentcfbc06a95b4ad6fd2462fa6505a49424db3cf54f (diff)
downloadlinux-ac04506c73d19dc8bdc167f79eef05d6bae5b644.tar.xz
ath10k: don't use return on void functions
Fixes a checkpatch warning: WARNING: void function return statements are not generally useful Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r--drivers/net/wireless/ath/ath10k/htt_tx.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/htt_tx.c b/drivers/net/wireless/ath/ath10k/htt_tx.c
index 1ab64631ba1b..bd87a35201d8 100644
--- a/drivers/net/wireless/ath/ath10k/htt_tx.c
+++ b/drivers/net/wireless/ath/ath10k/htt_tx.c
@@ -154,7 +154,6 @@ void ath10k_htt_tx_free(struct ath10k_htt *htt)
kfree(htt->pending_tx);
kfree(htt->used_msdu_ids);
dma_pool_destroy(htt->tx_pool);
- return;
}
void ath10k_htt_htc_tx_complete(struct ath10k *ar, struct sk_buff *skb)