Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed963771 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/radeon: fix typo in ci_stop_dpm()



Need to use the RREG32_SMC() accessor since the register
is an smc indirect index.

Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
parent 6abafb78
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1179,7 +1179,7 @@ static int ci_stop_dpm(struct radeon_device *rdev)
	tmp &= ~GLOBAL_PWRMGT_EN;
	WREG32_SMC(GENERAL_PWRMGT, tmp);

	tmp = RREG32(SCLK_PWRMGT_CNTL);
	tmp = RREG32_SMC(SCLK_PWRMGT_CNTL);
	tmp &= ~DYNAMIC_PM_EN;
	WREG32_SMC(SCLK_PWRMGT_CNTL, tmp);