aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/debug.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/debug.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath9k/debug.c b/drivers/net/wireless/ath/ath9k/debug.c
index 352914cae6d..25ae88ebdfa 100644
--- a/drivers/net/wireless/ath/ath9k/debug.c
+++ b/drivers/net/wireless/ath/ath9k/debug.c
@@ -562,8 +562,8 @@ static const struct file_operations fops_xmit = {
562 562
563int ath9k_init_debug(struct ath_hw *ah) 563int ath9k_init_debug(struct ath_hw *ah)
564{ 564{
565 struct ath_softc *sc = ah->ah_sc; 565 struct ath_common *common = ath9k_hw_common(ah);
566 struct ath_common *common = ath9k_hw_common(sc->sc_ah); 566 struct ath_softc *sc = (struct ath_softc *) common->priv;
567 567
568 common->debug_mask = ath9k_debug; 568 common->debug_mask = ath9k_debug;
569 569
@@ -620,7 +620,8 @@ err:
620 620
621void ath9k_exit_debug(struct ath_hw *ah) 621void ath9k_exit_debug(struct ath_hw *ah)
622{ 622{
623 struct ath_softc *sc = ah->ah_sc; 623 struct ath_common *common = ath9k_hw_common(ah);
624 struct ath_softc *sc = (struct ath_softc *) common->priv;
624 625
625 debugfs_remove(sc->debug.debugfs_xmit); 626 debugfs_remove(sc->debug.debugfs_xmit);
626 debugfs_remove(sc->debug.debugfs_wiphy); 627 debugfs_remove(sc->debug.debugfs_wiphy);