linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] wlcore: fix runtime pm imbalance in wl1271_op_suspend
@ 2020-05-20 12:57 Dinghao Liu
  2020-05-20 18:48 ` Tony Lindgren
  2020-05-29 17:34 ` Kalle Valo
  0 siblings, 2 replies; 5+ messages in thread
From: Dinghao Liu @ 2020-05-20 12:57 UTC (permalink / raw)
  To: dinghao.liu, kjlu
  Cc: Kalle Valo, David S. Miller, Jakub Kicinski, Thomas Gleixner,
	Johannes Berg, Greg Kroah-Hartman, Maital Hahn, Fuqian Huang,
	Emmanuel Grumbach, Jason A. Donenfeld, Tony Lindgren,
	linux-wireless, netdev, linux-kernel

When wlcore_hw_interrupt_notify() returns an error code,
a pairing runtime PM usage counter decrement is needed to
keep the counter balanced.

Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
---
 drivers/net/wireless/ti/wlcore/main.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
index f140f7d7f553..8faee8cec1bc 100644
--- a/drivers/net/wireless/ti/wlcore/main.c
+++ b/drivers/net/wireless/ti/wlcore/main.c
@@ -1746,9 +1746,7 @@ static int __maybe_unused wl1271_op_suspend(struct ieee80211_hw *hw,
 
 		ret = wl1271_configure_suspend(wl, wlvif, wow);
 		if (ret < 0) {
-			mutex_unlock(&wl->mutex);
-			wl1271_warning("couldn't prepare device to suspend");
-			return ret;
+			goto out_sleep;
 		}
 	}
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-05-29 17:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-20 12:57 [PATCH] wlcore: fix runtime pm imbalance in wl1271_op_suspend Dinghao Liu
2020-05-20 18:48 ` Tony Lindgren
2020-05-21  4:51   ` dinghao.liu
2020-05-21 15:59     ` Tony Lindgren
2020-05-29 17:34 ` Kalle Valo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).