diff options
author | Rajkumar Manoharan <rmanohar@qti.qualcomm.com> | 2015-10-12 15:57:00 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2015-10-16 15:49:29 +0300 |
commit | aed1dc8231a035af3e7ef3f7ce1bd4ed2a13db31 (patch) | |
tree | e0037c49e471c6f2f1eb6d9efe7ceae928ac45fe /drivers/net/wireless/ath/ath10k/htc.h | |
parent | 0e339447cf2c8b5c742f9be8e2d73bc27b7ac9c4 (diff) | |
download | linux-aed1dc8231a035af3e7ef3f7ce1bd4ed2a13db31.tar.xz |
ath10k: export htc tx rx handlers
Export HTC layer tx and rx handlers. This will be used by HIF layer
for per-CE data processing. Instead of callback mechanism, HIF will
call appropriate upper layers API directly.
Reviewed-by: Michal Kazior <michal.kazior@tieto.com>
Signed-off-by: Rajkumar Manoharan <rmanohar@qti.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/htc.h')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/htc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath10k/htc.h b/drivers/net/wireless/ath/ath10k/htc.h index 527179c0edce..d1fc8e75efb7 100644 --- a/drivers/net/wireless/ath/ath10k/htc.h +++ b/drivers/net/wireless/ath/ath10k/htc.h @@ -355,5 +355,7 @@ int ath10k_htc_connect_service(struct ath10k_htc *htc, int ath10k_htc_send(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid, struct sk_buff *packet); struct sk_buff *ath10k_htc_alloc_skb(struct ath10k *ar, int size); +int ath10k_htc_tx_completion_handler(struct ath10k *ar, struct sk_buff *skb); +int ath10k_htc_rx_completion_handler(struct ath10k *ar, struct sk_buff *skb); #endif |