diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-25 17:15:23 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-26 16:36:45 +0300 |
commit | 900d6b3fea62a991cdb704bed6433ae72b424d96 (patch) | |
tree | 196902642f6e0e481f2047f47a377e822d99a4ff /drivers/net/wireless/ath/ath6kl/init.c | |
parent | 63de111257cdd04ebffc5ad873447ada2901a29e (diff) |
ath6kl: add tx_comp_multi() to struct htc_ep_callbacks
It's also needed by the USB code.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/init.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c index 1b97f26b9677..d33691e8f128 100644 --- a/drivers/net/wireless/ath/ath6kl/init.c +++ b/drivers/net/wireless/ath/ath6kl/init.c @@ -256,6 +256,7 @@ static int ath6kl_init_service_ep(struct ath6kl *ar) memset(&connect, 0, sizeof(connect)); /* these fields are the same for all service endpoints */ + connect.ep_cb.tx_comp_multi = ath6kl_tx_complete; connect.ep_cb.rx = ath6kl_rx; connect.ep_cb.rx_refill = ath6kl_rx_refill; connect.ep_cb.tx_full = ath6kl_tx_queue_full; |