projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f53700
)
staging: drm/omap: fix minimum width/height
author
Rob Clark
<rob@ti.com>
Mon, 9 Jan 2012 01:37:37 +0000
(19:37 -0600)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 8 Feb 2012 22:14:12 +0000
(14:14 -0800)
Fix minimum width/height so planes could be used to implement
hw mouse cursor.
Signed-off-by: Rob Clark <rob@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/omapdrm/omap_drv.c
patch
|
blob
|
history
diff --git
a/drivers/staging/omapdrm/omap_drv.c
b/drivers/staging/omapdrm/omap_drv.c
index
2de99ff
..
3bbea9a
100644
(file)
--- a/
drivers/staging/omapdrm/omap_drv.c
+++ b/
drivers/staging/omapdrm/omap_drv.c
@@
-390,8
+390,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..