diff mbox

drm/omap: fix minimum width/height

Message ID 1326073057-19270-1-git-send-email-rob.clark@linaro.org
State Accepted
Commit 6b8ca4cf53e04f377944228b66ddc7d5d593e705
Headers show

Commit Message

Rob Clark Jan. 9, 2012, 1:37 a.m. UTC
From: Rob Clark <rob@ti.com>

Fix minimum width/height so planes could be used to implement
hw mouse cursor.

Signed-off-by: Rob Clark <rob@ti.com>
---
 drivers/staging/omapdrm/omap_drv.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/staging/omapdrm/omap_drv.c b/drivers/staging/omapdrm/omap_drv.c
index 9a8b00c..163f0ae 100644
--- a/drivers/staging/omapdrm/omap_drv.c
+++ b/drivers/staging/omapdrm/omap_drv.c
@@ -401,8 +401,8 @@  static int omap_modeset_init(struct drm_device *dev)
 
 	dump_video_chains();
 
-	dev->mode_config.min_width = 256;
-	dev->mode_config.min_height = 256;
+	dev->mode_config.min_width = 32;
+	dev->mode_config.min_height = 32;
 
 	/* note: eventually will need some cpu_is_omapXYZ() type stuff here
 	 * to fill in these limits properly on different OMAP generations..