diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-07 13:03:57 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-07 13:03:57 -0500 |
commit | 51b56e263fb875a86e1f90e41b8c0b8a47c69b47 (patch) | |
tree | 7d3e8c9502d1f27e667de5172db82776480736fc | |
parent | ce0dc0cfeac9fde9964fa4b07aecd7cc604060e0 (diff) |
ath6kl: fix pointer style
reported by checkpatch:
ath6kl/core.h:748: ERROR: "foo * bar" should be "foo *bar"
ath6kl/core.h:751: ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/core.h b/drivers/net/wireless/ath/ath6kl/core.h index 01763cd243b4..f048924313fa 100644 --- a/drivers/net/wireless/ath/ath6kl/core.h +++ b/drivers/net/wireless/ath/ath6kl/core.h | |||
@@ -754,10 +754,10 @@ struct htc_packet *ath6kl_alloc_amsdu_rxbuf(struct htc_target *target, | |||
754 | void aggr_module_destroy(struct aggr_info *aggr_info); | 754 | void aggr_module_destroy(struct aggr_info *aggr_info); |
755 | void aggr_reset_state(struct aggr_info_conn *aggr_conn); | 755 | void aggr_reset_state(struct aggr_info_conn *aggr_conn); |
756 | 756 | ||
757 | struct ath6kl_sta *ath6kl_find_sta(struct ath6kl_vif *vif, u8 * node_addr); | 757 | struct ath6kl_sta *ath6kl_find_sta(struct ath6kl_vif *vif, u8 *node_addr); |
758 | struct ath6kl_sta *ath6kl_find_sta_by_aid(struct ath6kl *ar, u8 aid); | 758 | struct ath6kl_sta *ath6kl_find_sta_by_aid(struct ath6kl *ar, u8 aid); |
759 | 759 | ||
760 | void ath6kl_ready_event(void *devt, u8 * datap, u32 sw_ver, u32 abi_ver); | 760 | void ath6kl_ready_event(void *devt, u8 *datap, u32 sw_ver, u32 abi_ver); |
761 | int ath6kl_control_tx(void *devt, struct sk_buff *skb, | 761 | int ath6kl_control_tx(void *devt, struct sk_buff *skb, |
762 | enum htc_endpoint_id eid); | 762 | enum htc_endpoint_id eid); |
763 | void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel, | 763 | void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel, |