diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2012-04-16 13:57:02 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-05-15 17:53:24 -0400 |
commit | cd840f6a0d6522e37c49def0eabb1e2134b68f1d (patch) | |
tree | f59d538646c525c05b62ac93a5a4631436d30b82 | |
parent | b95d7cef067e12926b6b69a9164cdea301dd6fc0 (diff) | |
download | linux-3.10-cd840f6a0d6522e37c49def0eabb1e2134b68f1d.tar.gz linux-3.10-cd840f6a0d6522e37c49def0eabb1e2134b68f1d.tar.bz2 linux-3.10-cd840f6a0d6522e37c49def0eabb1e2134b68f1d.zip |
wlcore: release lock on error in wl1271_op_suspend()
We should release this lock before returning.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
-rw-r--r-- | drivers/net/wireless/ti/wlcore/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c index 4347de6784d..6cd09646d6e 100644 --- a/drivers/net/wireless/ti/wlcore/main.c +++ b/drivers/net/wireless/ti/wlcore/main.c @@ -1629,6 +1629,7 @@ static int wl1271_op_suspend(struct ieee80211_hw *hw, wl12xx_for_each_wlvif(wl, wlvif) { ret = wl1271_configure_suspend(wl, wlvif, wow); if (ret < 0) { + mutex_unlock(&wl->mutex); wl1271_warning("couldn't prepare device to suspend"); return ret; } |