ath5k: remove unused ah_txq_isr_qcborn member from struct ath5k_hw
authorPeter Seiderer <ps.report@gmx.net>
Wed, 12 Jan 2022 08:15:11 +0000 (10:15 +0200)
committerKalle Valo <quic_kvalo@quicinc.com>
Mon, 17 Jan 2022 12:38:26 +0000 (14:38 +0200)
Remove unused ah_txq_isr_qcborn member from struct ath5k_hw (set in
ath5k_hw_get_isr() but never used anywhere).

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20220110223021.17655-3-ps.report@gmx.net
drivers/net/wireless/ath/ath5k/ath5k.h
drivers/net/wireless/ath/ath5k/dma.c

index 72ba36a..ac3211b 100644 (file)
@@ -1396,7 +1396,6 @@ struct ath5k_hw {
 
        u32                     ah_txq_isr_txok_all;
        u32                     ah_txq_isr_txurn;
-       u32                     ah_txq_isr_qcborn;
 
        u32                     *ah_rf_banks;
        size_t                  ah_rf_banks_size;
index faea326..0ee46f8 100644 (file)
@@ -709,11 +709,8 @@ ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask)
                        *interrupt_mask |= AR5K_INT_BNR;
 
                /* A queue got CBR overrun */
-               if (unlikely(pisr & (AR5K_ISR_QCBRORN))) {
+               if (unlikely(pisr & (AR5K_ISR_QCBRORN)))
                        *interrupt_mask |= AR5K_INT_QCBRORN;
-                       ah->ah_txq_isr_qcborn |= AR5K_REG_MS(sisr3,
-                                               AR5K_SISR3_QCBRORN);
-               }
 
                /* A queue got CBR underrun */
                if (unlikely(pisr & (AR5K_ISR_QCBRURN)))