diff options
author | Sujith Manoharan <c_manoha@qca.qualcomm.com> | 2014-01-20 13:25:28 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-01-23 14:02:45 -0500 |
commit | 3b745c7ba9a58168f84e439454f4606665257abc (patch) | |
tree | 81a1706567112b538ee0dc7e843af0b6a169159d /drivers/net/wireless | |
parent | 64e5acb09ca6b50c97299cff9ef51299470b29f2 (diff) |
ath9k: Fix code mistake
The commit "ath9k: Process GTT interrupts" accidentally
had a line that was commented out.
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')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 73a36551a5ed..5924f72dd493 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -524,7 +524,7 @@ void ath9k_tasklet(unsigned long data) * successfully after a GTT interrupt, the GTT counter * gets reset to zero here. */ - /* sc->gtt_cnt = 0; */ + sc->gtt_cnt = 0; ath_tx_edma_tasklet(sc); } else { |