projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
862b89c
)
drm/modes: Fall back to 1024x768 instead of 800x600
author
Adam Jackson
<ajax@redhat.com>
Mon, 23 Nov 2009 19:23:07 +0000
(14:23 -0500)
committer
Dave Airlie
<airlied@redhat.com>
Tue, 24 Nov 2009 01:24:24 +0000
(11:24 +1000)
This matches the X server's fallback modes when using RANDR 1.2.
See also: http://bugzilla.redhat.com/538761
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_crtc_helper.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/drm_crtc_helper.c
b/drivers/gpu/drm/drm_crtc_helper.c
index 1fe4e1d344fdb1e6f21910d87b4795cd5986f933..c5bd50ce78e211ec2872c7495d1149eff293894c 100644
(file)
--- a/
drivers/gpu/drm/drm_crtc_helper.c
+++ b/
drivers/gpu/drm/drm_crtc_helper.c
@@
-109,7
+109,7
@@
int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
count = (*connector_funcs->get_modes)(connector);
if (!count) {
- count = drm_add_modes_noedid(connector,
800, 600
);
+ count = drm_add_modes_noedid(connector,
1024, 768
);
if (!count)
return 0;
}