Commit eaf47b71 authored by Wei Yongjun's avatar Wei Yongjun Committed by Greg Kroah-Hartman

staging: rtl8188eu: fix missing unlock on error in rtw_resume_process()

Add the missing unlock before return from function
rtw_resume_process() in the error handling case.
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8e02a3fd
......@@ -315,8 +315,10 @@ static int rtw_resume_process(struct adapter *padapter)
ret = 0;
exit:
if (pwrpriv)
if (pwrpriv) {
pwrpriv->bInSuspend = false;
mutex_unlock(&pwrpriv->mutex_lock);
}
pr_debug("<=== %s return %d.............. in %dms\n", __func__,
ret, jiffies_to_msecs(jiffies - start_time));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment