From: Sujith Manoharan Date: Mon, 20 Jan 2014 07:55:28 +0000 (+0530) Subject: ath9k: Fix code mistake X-Git-Tag: v3.14-rc1~94^2~3^2^2~2 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=3b745c7ba9a58168f84e439454f4606665257abc;p=linux.git ath9k: Fix code mistake The commit "ath9k: Process GTT interrupts" accidentally had a line that was commented out. Signed-off-by: Sujith Manoharan Signed-off-by: John W. Linville --- 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 {