[alsa-devel] [PATCH] slimbus: qcom: add missed clk_disable_unprepare in remove
            
            
            
                4 Nov
                
                    2019
                
            
            
                4 Nov
                
                '19
                
            
            
            
        
    
                5:16 p.m.
            
        The remove misses to disable and unprepare rclk and hclk. Add calls to clk_disable_unprepare to fix it.
Signed-off-by: Chuhong Yuan hslester96@gmail.com --- drivers/slimbus/qcom-ctrl.c | 2 ++ 1 file changed, 2 insertions(+)
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; }
-- 
2.23.0
    
        2192
        
      
          Age (days ago)
        
      
        2192
        
    
          Last active (days ago)
        
        
        
        0 comments
    
    
        
        1 participants
    
    
    
    
    
    
    
    
    participants (1)
- 
                
Chuhong Yuan