Skip to content
Snippets Groups Projects
Commit cbbd379a authored by Patrik Jakobsson's avatar Patrik Jakobsson
Browse files

drm/gma500: Increase max resolution for mode setting


By having a higher max resolution we can now set up a virtual
framebuffer that spans several monitors. 4096 should be ok since we're
gen 3 or higher and should be enough for most dual head setups.

Signed-off-by: default avatarPatrik Jakobsson <patrik.r.jakobsson@gmail.com>
parent e127dc28
No related branches found
No related tags found
No related merge requests found
...@@ -772,8 +772,8 @@ void psb_modeset_init(struct drm_device *dev) ...@@ -772,8 +772,8 @@ void psb_modeset_init(struct drm_device *dev)
for (i = 0; i < dev_priv->num_pipe; i++) for (i = 0; i < dev_priv->num_pipe; i++)
psb_intel_crtc_init(dev, i, mode_dev); psb_intel_crtc_init(dev, i, mode_dev);
dev->mode_config.max_width = 2048; dev->mode_config.max_width = 4096;
dev->mode_config.max_height = 2048; dev->mode_config.max_height = 4096;
psb_setup_outputs(dev); psb_setup_outputs(dev);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment