diff options
author | Chuhong Yuan <[email protected]> | 2020-01-09 10:31:48 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2020-01-14 21:46:48 +0100 |
commit | 89d93c6dab87f9f416b5ae931f7ad07b77aaca66 (patch) | |
tree | f162d5a745a44b7b14e73523863408f103be18a2 | |
parent | 6da1dfb73adffd9641ee373d342f917bddc0ee63 (diff) |
slimbus: qcom: add missed clk_disable_unprepare in remove
The remove misses to disable and unprepare rclk and hclk.
Add calls to clk_disable_unprepare to fix it.
Signed-off-by: Chuhong Yuan <[email protected]>
Signed-off-by: Srinivas Kandagatla <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/slimbus/qcom-ctrl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/slimbus/qcom-ctrl.c b/drivers/slimbus/qcom-ctrl.c index a444badd8df5..4aad2566f52d 100644 --- a/drivers/slimbus/qcom-ctrl.c +++ b/drivers/slimbus/qcom-ctrl.c @@ -641,6 +641,8 @@ static int qcom_slim_remove(struct platform_device *pdev) pm_runtime_disable(&pdev->dev); slim_unregister_controller(&ctrl->ctrl); + clk_disable_unprepare(ctrl->rclk); + clk_disable_unprepare(ctrl->hclk); destroy_workqueue(ctrl->rxwq); return 0; } |