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

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

drm/radeon/ss: use num_crtc rather than hardcoded 6



When checking if a pll is in use.

Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
parent 676bc2e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -452,7 +452,7 @@ static void atombios_crtc_program_ss(struct radeon_device *rdev,
	union atom_enable_ss args;

	if (!enable) {
		for (i = 0; i < 6; i++) {
		for (i = 0; i < rdev->num_crtc; i++) {
			if (rdev->mode_info.crtcs[i] &&
			    rdev->mode_info.crtcs[i]->enabled &&
			    i != crtc_id &&