summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2015-10-05 10:15:14 -0400
committerAlex Deucher <alexander.deucher@amd.com>2015-10-05 10:15:14 -0400
commit26d0c21db1fd1679fcf07863741c13ba5ce37a65 (patch)
tree75ccf4b23a7c194dc31d0f8bf49769b9a030c783
parent8b7530b15c3332220a081035ab467c9359aff409 (diff)
downloadlinux-stable-26d0c21db1fd1679fcf07863741c13ba5ce37a65.tar.gz
linux-stable-26d0c21db1fd1679fcf07863741c13ba5ce37a65.tar.bz2
linux-stable-26d0c21db1fd1679fcf07863741c13ba5ce37a65.zip
drm/amdgpu: fix num_crtc on CZ
Hw only has 3 crtcs. copy paste typo. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org
-rw-r--r--drivers/gpu/drm/amd/amdgpu/dce_v11_0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
index 6411e8244671..fcd2ed558902 100644
--- a/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
@@ -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;