diff options
author | Eliad Peller <eliad@wizery.com> | 2011-04-04 07:38:47 (GMT) |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-05-02 07:25:22 (GMT) |
commit | c75bbcdb200e2815c855e42a4685d170858af306 (patch) | |
tree | 7fa407753a39e5258166a95bd52a86820cc77027 /drivers | |
parent | 564f59509e26355965949c677f9d6eb064a3aa0b (diff) | |
download | linux-fsl-qoriq-c75bbcdb200e2815c855e42a4685d170858af306.tar.xz |
wl12xx: sleep instead of wakeup after tx work
commit d05c806 ("wl12xx: rearrange some ELP wake_up/sleep calls")
introduced a bug in which wl1271_ps_elp_wakeup() was called instead
of wl1271_ps_elp_sleep() after completing the tx work.
Reported-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/wl12xx/tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/tx.c b/drivers/net/wireless/wl12xx/tx.c index 7a3339f..c836659 100644 --- a/drivers/net/wireless/wl12xx/tx.c +++ b/drivers/net/wireless/wl12xx/tx.c @@ -630,7 +630,7 @@ void wl1271_tx_work(struct work_struct *work) wl1271_tx_work_locked(wl); - wl1271_ps_elp_wakeup(wl); + wl1271_ps_elp_sleep(wl); out: mutex_unlock(&wl->mutex); } |