aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath10k/pci.c
diff options
context:
space:
mode:
authorMichal Kazior <michal.kazior@tieto.com>2013-10-02 05:03:40 -0400
committerKalle Valo <kvalo@qca.qualcomm.com>2013-10-07 08:28:02 -0400
commit2e761b5a5222071d55ebccf65f93d281e4c11958 (patch)
treec352ad484bafdfc69d96d66dbd9b6d7c7d24c80d /drivers/net/wireless/ath/ath10k/pci.c
parentddb6ad77b4ecfb832982be69f2169165e6a43f0b (diff)
ath10k: remove ce_sendlist_send
It is completely pointless to keep this function around. It doesn't do anything different than ce_send except it introduces more overhead. Signed-off-by: Michal Kazior <michal.kazior@tieto.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/pci.c')
-rw-r--r--drivers/net/wireless/ath/ath10k/pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c
index dff23d97bed0..4f6a9787e2d3 100644
--- a/drivers/net/wireless/ath/ath10k/pci.c
+++ b/drivers/net/wireless/ath/ath10k/pci.c
@@ -730,8 +730,8 @@ static int ath10k_pci_hif_send_head(struct ath10k *ar, u8 pipe_id,
730 pipe_info->num_sends_allowed--; 730 pipe_info->num_sends_allowed--;
731 spin_unlock_bh(&pipe_info->pipe_lock); 731 spin_unlock_bh(&pipe_info->pipe_lock);
732 732
733 ret = ath10k_ce_sendlist_send(ce_hdl, nbuf, transfer_id, 733 ret = ath10k_ce_send(ce_hdl, nbuf, skb_cb->paddr, len, transfer_id,
734 skb_cb->paddr, len, flags); 734 flags);
735 if (ret) 735 if (ret)
736 ath10k_warn("CE send failed: %p\n", nbuf); 736 ath10k_warn("CE send failed: %p\n", nbuf);
737 737