mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
memory: renesas-rpc-if: Fix unbalanced pm_runtime_enable in rpcif_{enable,disable}_rpm
commit61a6d854b9upstream. rpcif_enable_rpm calls pm_runtime_enable, so rpcif_disable_rpm needs to call pm_runtime_disable and not pm_runtime_put_sync. Fixes:ca7d8b980b("memory: add Renesas RPC-IF driver") Reported-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Sergei Shtylyov <sergei.shtylyov@gmail.com> Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20201126191146.8753-3-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4f826e66b0
commit
ea43135a3c
@@ -212,7 +212,7 @@ EXPORT_SYMBOL(rpcif_enable_rpm);
|
||||
|
||||
void rpcif_disable_rpm(struct rpcif *rpc)
|
||||
{
|
||||
pm_runtime_put_sync(rpc->dev);
|
||||
pm_runtime_disable(rpc->dev);
|
||||
}
|
||||
EXPORT_SYMBOL(rpcif_disable_rpm);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user