slimbus: messaging: remove multiple calls to pm_runtime_mark_last_busy
There seems to be a multiple calls to pm_runtime_mark_last_busy(), which looks like a typo. Fix this by properly adding pm_runtime_put_autosuspend to put controller in auto suspend state. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8134d27103
commit
057ba872d0
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ slim_xfer_err:
|
||||||
* if there was error during this transaction
|
* if there was error during this transaction
|
||||||
*/
|
*/
|
||||||
pm_runtime_mark_last_busy(ctrl->dev);
|
pm_runtime_mark_last_busy(ctrl->dev);
|
||||||
pm_runtime_mark_last_busy(ctrl->dev);
|
pm_runtime_put_autosuspend(ctrl->dev);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue