diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2010-04-23 10:28:15 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-04-26 14:21:18 -0400 |
commit | f66890724fb3131894b8eee5fc552a5dc42dc1df (patch) | |
tree | 727765c7171d6bf2ca6d418d1b2c629eee5ec6cf /drivers/net/wireless/ath/ath9k/htc_hst.c | |
parent | 51f139d567574e6a9b5c8aaddb8ff3a240cf8e52 (diff) | |
download | talos-obmc-linux-f66890724fb3131894b8eee5fc552a5dc42dc1df.tar.gz talos-obmc-linux-f66890724fb3131894b8eee5fc552a5dc42dc1df.zip |
ath9k_htc: Pass correct private pointer
In the TX callback, the HTC layer has to pass the
priv pointer that was registered during service initialization.
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/htc_hst.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc_hst.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc_hst.c b/drivers/net/wireless/ath/ath9k/htc_hst.c index f2dca258bdc2..7bf6ce1e7e2e 100644 --- a/drivers/net/wireless/ath/ath9k/htc_hst.c +++ b/drivers/net/wireless/ath/ath9k/htc_hst.c @@ -341,8 +341,9 @@ void ath9k_htc_txcompletion_cb(struct htc_target *htc_handle, skb_pull(skb, sizeof(struct htc_frame_hdr)); if (endpoint->ep_callbacks.tx) { - endpoint->ep_callbacks.tx(htc_handle->drv_priv, skb, - htc_hdr->endpoint_id, txok); + endpoint->ep_callbacks.tx(endpoint->ep_callbacks.priv, + skb, htc_hdr->endpoint_id, + txok); } } |