diff options
author | Evan Quan <evan.quan@amd.com> | 2020-08-12 13:19:25 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-08-14 16:22:41 -0400 |
commit | 70bdb6ed222053bb0e4694f255a685cc3f4981e0 (patch) | |
tree | b40647f2ece465950bb56c85539580ad102c6826 /drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c | |
parent | b89e9eb681653868e3ecb0287f1cf65aaec853da (diff) | |
download | linux-70bdb6ed222053bb0e4694f255a685cc3f4981e0.tar.gz linux-70bdb6ed222053bb0e4694f255a685cc3f4981e0.tar.bz2 linux-70bdb6ed222053bb0e4694f255a685cc3f4981e0.zip |
drm/amd/powerplay: drop unnecessary pp_funcs checker
It's redundant. Also, the callers should not care about
the implementation details.
Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Acked-by: Nirmoy Das <nirmoy.das@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c')
-rwxr-xr-x | drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c index e24d6e533be3..45a902b1acb7 100755 --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c @@ -304,8 +304,7 @@ static void mmhub_v1_0_update_power_gating(struct amdgpu_device *adev, return; if (enable && adev->pg_flags & AMD_PG_SUPPORT_MMHUB) { - if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->set_powergating_by_smu) - amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GMC, true); + amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GMC, true); } } |