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 /drivers/gpu | |
parent | 8b7530b15c3332220a081035ab467c9359aff409 (diff) | |
download | linux-26d0c21db1fd1679fcf07863741c13ba5ce37a65.tar.bz2 |
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
Diffstat (limited to 'drivers/gpu')
-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) 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; |