diff options
| author | Prike Liang <[email protected]> | 2019-06-24 17:25:26 +0800 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2019-06-25 13:23:51 -0500 |
| commit | 1189413f9cd45e42dc8ce3dc4eacd6ae27269ef9 (patch) | |
| tree | 191bfff3dd702571a0e6aaf0ab4f8e44b9716bd5 | |
| parent | aeaa72e25ea8d2a2de6263ab0fe05307a588bdce (diff) | |
drm/amd/powerplay:clean up the residual mutex for smu_hw_init
The mutex for procting SMU during hw_init was removed as system
will be deadlock when smu_populate_umd_state_clk try get SMU mutex.
Therefore need remove the residual mutex from failed path.
Signed-off-by: Prike Liang <[email protected]>
Reviewed-by: Evan Quan <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/amd/powerplay/amdgpu_smu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c index 29fb1965686a..9559127dd0ec 100644 --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c @@ -1044,7 +1044,6 @@ static int smu_hw_init(void *handle) return 0; failed: - mutex_unlock(&smu->mutex); return ret; } |