diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/debug.h')
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/debug.h | 21 | 
1 files changed, 0 insertions, 21 deletions
diff --git a/drivers/net/wireless/ath/ath9k/debug.h b/drivers/net/wireless/ath/ath9k/debug.h index 822b6f3f23c..bb0823242ba 100644 --- a/drivers/net/wireless/ath/ath9k/debug.h +++ b/drivers/net/wireless/ath/ath9k/debug.h @@ -80,13 +80,6 @@ struct ath_interrupt_stats {  	u32 bb_watchdog;  }; -struct ath_rc_stats { -	u32 success; -	u32 retries; -	u32 xretries; -	u8 per; -}; -  /**   * struct ath_tx_stats - Statistics about TX   * @tx_pkts_all:  No. of total frames transmitted, including ones that @@ -160,7 +153,6 @@ struct ath_rx_stats {  struct ath_stats {  	struct ath_interrupt_stats istats; -	struct ath_rc_stats rcstats[RATE_TABLE_SIZE];  	struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];  	struct ath_rx_stats rxstats;  }; @@ -177,12 +169,9 @@ void ath9k_exit_debug(struct ath_hw *ah);  int ath9k_debug_create_root(void);  void ath9k_debug_remove_root(void);  void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status); -void ath_debug_stat_rc(struct ath_softc *sc, int final_rate);  void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq,  		       struct ath_buf *bf, struct ath_tx_status *ts);  void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs); -void ath_debug_stat_retries(struct ath_softc *sc, int rix, -			    int xretries, int retries, u8 per);  #else @@ -209,11 +198,6 @@ static inline void ath_debug_stat_interrupt(struct ath_softc *sc,  {  } -static inline void ath_debug_stat_rc(struct ath_softc *sc, -				     int final_rate) -{ -} -  static inline void ath_debug_stat_tx(struct ath_softc *sc,  				     struct ath_txq *txq,  				     struct ath_buf *bf, @@ -226,11 +210,6 @@ static inline void ath_debug_stat_rx(struct ath_softc *sc,  {  } -static inline void ath_debug_stat_retries(struct ath_softc *sc, int rix, -					  int xretries, int retries, u8 per) -{ -} -  #endif /* CONFIG_ATH9K_DEBUGFS */  #endif /* DEBUG_H */  |