projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ceefedd
)
drm/radeon/kms: limit default tv modes to <= 1024x768
author
Alex Deucher
<alexdeucher@gmail.com>
Tue, 13 Oct 2009 16:48:44 +0000
(12:48 -0400)
committer
Dave Airlie
<airlied@redhat.com>
Thu, 15 Oct 2009 22:47:01 +0000
(08:47 +1000)
fixes fdo bug 24496
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/radeon_connectors.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/radeon_connectors.c
b/drivers/gpu/drm/radeon/radeon_connectors.c
index 5b6067aa08bd935654942995923cb5f06314ec04..ce3a785a633b0e7b84ffd96c804dedb3176f2827 100644
(file)
--- a/
drivers/gpu/drm/radeon/radeon_connectors.c
+++ b/
drivers/gpu/drm/radeon/radeon_connectors.c
@@
-223,6
+223,11
@@
static void radeon_add_common_modes(struct drm_encoder *encoder, struct drm_conn
};
for (i = 0; i < 17; i++) {
+ if (radeon_encoder->devices & (ATOM_DEVICE_TV_SUPPORT)) {
+ if (common_modes[i].w > 1024 ||
+ common_modes[i].h > 768)
+ continue;
+ }
if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
if (common_modes[i].w > native_mode->hdisplay ||
common_modes[i].h > native_mode->vdisplay ||