Skip to content

Commit

Permalink
drm/amdgpu: fix num_crtc on CZ
Browse files Browse the repository at this point in the history
Hw only has 3 crtcs.  copy paste typo.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
  • Loading branch information
Alex Deucher committed Oct 5, 2015
1 parent 8b7530b commit 26d0c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
Original file line number Diff line number Diff line change
Expand Up @@ -2888,7 +2888,7 @@ static int dce_v11_0_early_init(void *handle)

switch (adev->asic_type) {
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_dig = 9;
break;
Expand Down

0 comments on commit 26d0c21

Please sign in to comment.