diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-25 17:15:26 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-26 16:36:46 +0300 |
commit | 048f24f695cb7cf5fd78eaa4aee38ce1c2e2f8c5 (patch) | |
tree | 1fc5bce3d5d41c1b2987c87ec594e06b7e6cb885 /drivers/net/wireless/ath/ath6kl/htc.h | |
parent | 8bd5bca821f3284ebe39ffcfcc6c62b58ab54240 (diff) | |
download | linux-048f24f695cb7cf5fd78eaa4aee38ce1c2e2f8c5.tar.bz2 |
ath6kl: remove void pointer from ath6kl_credit_setup()
Void pointers are bad.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/htc.h')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/htc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/htc.h b/drivers/net/wireless/ath/ath6kl/htc.h index e97ebc33aad1..0ba8deb2f096 100644 --- a/drivers/net/wireless/ath/ath6kl/htc.h +++ b/drivers/net/wireless/ath/ath6kl/htc.h @@ -594,7 +594,7 @@ int ath6kl_htc_add_rxbuf_multiple(struct htc_target *target, int ath6kl_htc_rxmsg_pending_handler(struct htc_target *target, u32 msg_look_ahead, int *n_pkts); -int ath6kl_credit_setup(void *htc_handle, +int ath6kl_credit_setup(struct htc_target *htc_target, struct ath6kl_htc_credit_info *cred_info); static inline void set_htc_pkt_info(struct htc_packet *packet, void *context, |