aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/link.c
diff options
context:
space:
mode:
authorSujith Manoharan <c_manoha@qca.qualcomm.com>2012-12-09 20:52:33 -0500
committerJohn W. Linville <linville@tuxdriver.com>2012-12-10 15:49:47 -0500
commit914d0f4def3817c295d3e8cbb7ea53bef8b0efcb (patch)
tree3018ed0c7e248b020135c5bf564b73031e406113 /drivers/net/wireless/ath/ath9k/link.c
parent8c723e2df2411eb02e697efb31f309136b747f7a (diff)
ath9k: Add a few debug messages for PAPRD
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/link.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/link.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/link.c b/drivers/net/wireless/ath/ath9k/link.c
index fc6b075ad635..3c996ffe63c3 100644
--- a/drivers/net/wireless/ath/ath9k/link.c
+++ b/drivers/net/wireless/ath/ath9k/link.c
@@ -179,11 +179,14 @@ void ath_rx_poll(unsigned long data)
179static void ath_paprd_activate(struct ath_softc *sc) 179static void ath_paprd_activate(struct ath_softc *sc)
180{ 180{
181 struct ath_hw *ah = sc->sc_ah; 181 struct ath_hw *ah = sc->sc_ah;
182 struct ath_common *common = ath9k_hw_common(ah);
182 struct ath9k_hw_cal_data *caldata = ah->caldata; 183 struct ath9k_hw_cal_data *caldata = ah->caldata;
183 int chain; 184 int chain;
184 185
185 if (!caldata || !caldata->paprd_done) 186 if (!caldata || !caldata->paprd_done) {
187 ath_dbg(common, CALIBRATE, "Failed to activate PAPRD\n");
186 return; 188 return;
189 }
187 190
188 ath9k_ps_wakeup(sc); 191 ath9k_ps_wakeup(sc);
189 ar9003_paprd_enable(ah, false); 192 ar9003_paprd_enable(ah, false);
@@ -194,6 +197,7 @@ static void ath_paprd_activate(struct ath_softc *sc)
194 ar9003_paprd_populate_single_table(ah, caldata, chain); 197 ar9003_paprd_populate_single_table(ah, caldata, chain);
195 } 198 }
196 199
200 ath_dbg(common, CALIBRATE, "Activating PAPRD\n");
197 ar9003_paprd_enable(ah, true); 201 ar9003_paprd_enable(ah, true);
198 ath9k_ps_restore(sc); 202 ath9k_ps_restore(sc);
199} 203}
@@ -253,8 +257,10 @@ void ath_paprd_calibrate(struct work_struct *work)
253 int len = 1800; 257 int len = 1800;
254 int ret; 258 int ret;
255 259
256 if (!caldata || !caldata->paprd_packet_sent || caldata->paprd_done) 260 if (!caldata || !caldata->paprd_packet_sent || caldata->paprd_done) {
261 ath_dbg(common, CALIBRATE, "Skipping PAPRD calibration\n");
257 return; 262 return;
263 }
258 264
259 ath9k_ps_wakeup(sc); 265 ath9k_ps_wakeup(sc);
260 266