diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-01-28 17:52:49 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-01-28 15:46:25 -0500 |
commit | 3bf63e59e577cbecd41334c866f501c4cc5d54c5 (patch) | |
tree | 863d4af6ec36b7f8c21f3e5fea316321b43dc712 | |
parent | 9f60e7ee4206507c7f248d06e3b4a8a59ed33308 (diff) | |
download | linux-3bf63e59e577cbecd41334c866f501c4cc5d54c5.tar.bz2 |
ath9k: fix compile error in non-debug ath_debug_stat_tx() stub
"ath9k: fix tx queue index confusion in debugfs code" changed the debug
function but not the stub.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/debug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/debug.h b/drivers/net/wireless/ath/ath9k/debug.h index 1bdc6d4ceb17..59338de0ce19 100644 --- a/drivers/net/wireless/ath/ath9k/debug.h +++ b/drivers/net/wireless/ath/ath9k/debug.h @@ -192,7 +192,8 @@ static inline void ath_debug_stat_interrupt(struct ath_softc *sc, static inline void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf, - struct ath_tx_status *ts) + struct ath_tx_status *ts, + struct ath_txq *txq) { } |