diff options
author | Rajkumar Manoharan <rmanohar@qca.qualcomm.com> | 2011-08-13 00:58:11 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-08-24 13:59:44 -0400 |
commit | 3de2111697ffca5b9b2fba452bced812725524de (patch) | |
tree | 942263273b14a86185ad0157d1c3b4cd3117aff6 | |
parent | 29ab0b3632293b506d85adc9dcb323c79f40d428 (diff) |
ath9k: Remove unused argument tsf from ath9k_hw_rxprocdesc
Signed-off-by: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/mac.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath9k/mac.h | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath9k/recv.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath9k/mac.c b/drivers/net/wireless/ath/ath9k/mac.c index 0f90e1521ffe..7ddca67db66d 100644 --- a/drivers/net/wireless/ath/ath9k/mac.c +++ b/drivers/net/wireless/ath/ath9k/mac.c | |||
@@ -564,7 +564,7 @@ bool ath9k_hw_resettxqueue(struct ath_hw *ah, u32 q) | |||
564 | EXPORT_SYMBOL(ath9k_hw_resettxqueue); | 564 | EXPORT_SYMBOL(ath9k_hw_resettxqueue); |
565 | 565 | ||
566 | int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds, | 566 | int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds, |
567 | struct ath_rx_status *rs, u64 tsf) | 567 | struct ath_rx_status *rs) |
568 | { | 568 | { |
569 | struct ar5416_desc ads; | 569 | struct ar5416_desc ads; |
570 | struct ar5416_desc *adsp = AR5416DESC(ds); | 570 | struct ar5416_desc *adsp = AR5416DESC(ds); |
diff --git a/drivers/net/wireless/ath/ath9k/mac.h b/drivers/net/wireless/ath/ath9k/mac.h index 8e848c4d16ba..153859ccc2a1 100644 --- a/drivers/net/wireless/ath/ath9k/mac.h +++ b/drivers/net/wireless/ath/ath9k/mac.h | |||
@@ -687,7 +687,7 @@ int ath9k_hw_setuptxqueue(struct ath_hw *ah, enum ath9k_tx_queue type, | |||
687 | bool ath9k_hw_releasetxqueue(struct ath_hw *ah, u32 q); | 687 | bool ath9k_hw_releasetxqueue(struct ath_hw *ah, u32 q); |
688 | bool ath9k_hw_resettxqueue(struct ath_hw *ah, u32 q); | 688 | bool ath9k_hw_resettxqueue(struct ath_hw *ah, u32 q); |
689 | int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds, | 689 | int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds, |
690 | struct ath_rx_status *rs, u64 tsf); | 690 | struct ath_rx_status *rs); |
691 | void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds, | 691 | void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds, |
692 | u32 size, u32 flags); | 692 | u32 size, u32 flags); |
693 | bool ath9k_hw_setrxabort(struct ath_hw *ah, bool set); | 693 | bool ath9k_hw_setrxabort(struct ath_hw *ah, bool set); |
diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index c0c66e0ca266..a9d8f96be5a7 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c | |||
@@ -761,7 +761,7 @@ static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc, | |||
761 | * on. All this is necessary because of our use of | 761 | * on. All this is necessary because of our use of |
762 | * a self-linked list to avoid rx overruns. | 762 | * a self-linked list to avoid rx overruns. |
763 | */ | 763 | */ |
764 | ret = ath9k_hw_rxprocdesc(ah, ds, rs, 0); | 764 | ret = ath9k_hw_rxprocdesc(ah, ds, rs); |
765 | if (ret == -EINPROGRESS) { | 765 | if (ret == -EINPROGRESS) { |
766 | struct ath_rx_status trs; | 766 | struct ath_rx_status trs; |
767 | struct ath_buf *tbf; | 767 | struct ath_buf *tbf; |
@@ -787,7 +787,7 @@ static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc, | |||
787 | */ | 787 | */ |
788 | 788 | ||
789 | tds = tbf->bf_desc; | 789 | tds = tbf->bf_desc; |
790 | ret = ath9k_hw_rxprocdesc(ah, tds, &trs, 0); | 790 | ret = ath9k_hw_rxprocdesc(ah, tds, &trs); |
791 | if (ret == -EINPROGRESS) | 791 | if (ret == -EINPROGRESS) |
792 | return NULL; | 792 | return NULL; |
793 | } | 793 | } |