slimbus: Fix missing unlock on error in slim_msg_response()
Add the missing unlock before return from function slim_msg_response() in the error handling case. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ab9b3de701
commit
f8d2c8ea57
1 changed files with 1 additions and 0 deletions
|
@ -38,6 +38,7 @@ void slim_msg_response(struct slim_controller *ctrl, u8 *reply, u8 tid, u8 len)
|
|||
if (msg == NULL || msg->rbuf == NULL) {
|
||||
dev_err(ctrl->dev, "Got response to invalid TID:%d, len:%d\n",
|
||||
tid, len);
|
||||
spin_unlock_irqrestore(&ctrl->txn_lock, flags);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue