projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73104b5
)
drm/radeon/kms: fix regression is handling >2 heads on cedar/caicos
author
Alex Deucher
<alexander.deucher@amd.com>
Thu, 11 Aug 2011 14:01:03 +0000
(14:01 +0000)
committer
Dave Airlie
<airlied@redhat.com>
Fri, 12 Aug 2011 09:48:08 +0000
(10:48 +0100)
Need to add support for 4 crtcs when setting the possible crtcs
for the encoders.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@kernel.org
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/radeon_encoders.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/radeon_encoders.c
b/drivers/gpu/drm/radeon/radeon_encoders.c
index b293487e5aa3dc2193fee36eb0f9c00fe7080a0c..319d85d7e759b4f0599f2c5df2b9182568bd993d 100644
(file)
--- a/
drivers/gpu/drm/radeon/radeon_encoders.c
+++ b/
drivers/gpu/drm/radeon/radeon_encoders.c
@@
-2323,6
+2323,9
@@
radeon_add_atom_encoder(struct drm_device *dev,
default:
encoder->possible_crtcs = 0x3;
break;
+ case 4:
+ encoder->possible_crtcs = 0xf;
+ break;
case 6:
encoder->possible_crtcs = 0x3f;
break;