[Openchrome-devel] drm-openchrome: drivers/gpu/drm

Xavier Bachelot xavierb at kemper.freedesktop.org
Fri Jul 19 09:23:49 PDT 2013


 drivers/gpu/drm/via/via_display.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 371192bdf0f859ef7a31c1e055521ff70747ed84
Author: Xavier Bachelot <xavier at bachelot.org>
Date:   Thu Jul 18 21:59:59 2013 +0200

    Increase max screen size to 4096x4096

diff --git a/drivers/gpu/drm/via/via_display.c b/drivers/gpu/drm/via/via_display.c
index 25f2f7e..1880272 100644
--- a/drivers/gpu/drm/via/via_display.c
+++ b/drivers/gpu/drm/via/via_display.c
@@ -507,11 +507,10 @@ via_modeset_init(struct drm_device *dev)
 
 	drm_mode_config_init(dev);
 
-	/* What is the max ? */
 	dev->mode_config.min_width = 320;
 	dev->mode_config.min_height = 200;
-	dev->mode_config.max_width = 2048;
-	dev->mode_config.max_height = 2048;
+	dev->mode_config.max_width = 4096;
+	dev->mode_config.max_height = 4096;
 
 	via_display_init(dev);
 	via_i2c_reg_init(dev_priv);


More information about the Openchrome-devel mailing list