diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2015-10-05 10:15:14 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2015-10-05 10:15:14 -0400 |
commit | 26d0c21db1fd1679fcf07863741c13ba5ce37a65 (patch) | |
tree | 75ccf4b23a7c194dc31d0f8bf49769b9a030c783 | |
parent | 8b7530b15c3332220a081035ab467c9359aff409 (diff) |
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.c | 2 |
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) | |||
2888 | 2888 | ||
2889 | switch (adev->asic_type) { | 2889 | switch (adev->asic_type) { |
2890 | case CHIP_CARRIZO: | 2890 | case CHIP_CARRIZO: |
2891 | adev->mode_info.num_crtc = 4; | 2891 | adev->mode_info.num_crtc = 3; |
2892 | adev->mode_info.num_hpd = 6; | 2892 | adev->mode_info.num_hpd = 6; |
2893 | adev->mode_info.num_dig = 9; | 2893 | adev->mode_info.num_dig = 9; |
2894 | break; | 2894 | break; |