diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-09-14 12:50:28 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-09-18 10:46:12 +0300 |
commit | ac04506c73d19dc8bdc167f79eef05d6bae5b644 (patch) | |
tree | ff0b39378780ba586b245f514a161ed07e611ebc /drivers/net | |
parent | cfbc06a95b4ad6fd2462fa6505a49424db3cf54f (diff) | |
download | talos-op-linux-ac04506c73d19dc8bdc167f79eef05d6bae5b644.tar.gz talos-op-linux-ac04506c73d19dc8bdc167f79eef05d6bae5b644.zip |
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')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/htt_tx.c | 1 |
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) |