diff options
author | Michal Kazior <michal.kazior@tieto.com> | 2014-11-27 11:09:36 +0100 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-12-01 09:13:06 +0200 |
commit | 5f07ea4c3a9ae3277ac3bfdbc6df5814e800ad66 (patch) | |
tree | f66f9fb8b9f5b6225af7ddcc2c9d4b77bf080788 /drivers/net/wireless/ath/ath10k/pci.c | |
parent | acfe7ecfa40dece73e3dcdc2f606a87988b1472c (diff) | |
download | blackbird-op-linux-5f07ea4c3a9ae3277ac3bfdbc6df5814e800ad66.tar.gz blackbird-op-linux-5f07ea4c3a9ae3277ac3bfdbc6df5814e800ad66.zip |
ath10k: remove unused callback argument from struct ath10k_hif_cb::rx_completion
This wasn't used since forever and there are no
plans on using it.
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index 0816098af578..541f3bc497a9 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c @@ -875,7 +875,7 @@ static void ath10k_pci_ce_recv_data(struct ath10k_ce_pipe *ce_state) ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci rx: ", skb->data, skb->len); - cb->rx_completion(ar, skb, pipe_info->pipe_num); + cb->rx_completion(ar, skb); } ath10k_pci_rx_post_pipe(pipe_info); |