Commit 26d0c21d authored by Alex Deucher's avatar Alex Deucher

drm/amdgpu: fix num_crtc on CZ

Hw only has 3 crtcs.  copy paste typo.
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
parent 8b7530b1
...@@ -2888,7 +2888,7 @@ static int dce_v11_0_early_init(void *handle) ...@@ -2888,7 +2888,7 @@ static int dce_v11_0_early_init(void *handle)
switch (adev->asic_type) { switch (adev->asic_type) {
case CHIP_CARRIZO: case CHIP_CARRIZO:
adev->mode_info.num_crtc = 4; adev->mode_info.num_crtc = 3;
adev->mode_info.num_hpd = 6; adev->mode_info.num_hpd = 6;
adev->mode_info.num_dig = 9; adev->mode_info.num_dig = 9;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment