diff options
author | Koen Kooi <koen@openembedded.org> | 2009-07-29 14:27:39 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-07-29 14:27:39 +0200 |
commit | 10f96a16b063c31bc1fedae15bd76c0afb887e1e (patch) | |
tree | d0e8aef7ea840fd95bf74abeaefd32d3618444a4 /recipes/linux/linux-omap-pm/dss2/0018-DSS2-check-for-ovl-paddr-only-when-enabling.patch | |
parent | 69a41a50ac43e82deaa9a0114c9f1c9a0c02ff0b (diff) |
linux-omap-pm git: start updating it to .31rc
Diffstat (limited to 'recipes/linux/linux-omap-pm/dss2/0018-DSS2-check-for-ovl-paddr-only-when-enabling.patch')
-rw-r--r-- | recipes/linux/linux-omap-pm/dss2/0018-DSS2-check-for-ovl-paddr-only-when-enabling.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/recipes/linux/linux-omap-pm/dss2/0018-DSS2-check-for-ovl-paddr-only-when-enabling.patch b/recipes/linux/linux-omap-pm/dss2/0018-DSS2-check-for-ovl-paddr-only-when-enabling.patch deleted file mode 100644 index 0261db2bd4..0000000000 --- a/recipes/linux/linux-omap-pm/dss2/0018-DSS2-check-for-ovl-paddr-only-when-enabling.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 63e15ba8d5f95b13d3abf359da718537d769f112 Mon Sep 17 00:00:00 2001 -From: Tomi Valkeinen <tomi.valkeinen@nokia.com> -Date: Tue, 7 Apr 2009 10:01:58 +0300 -Subject: [PATCH 18/69] DSS2: check for ovl paddr only when enabling - -It seems Xvideo uses SETUP_PLANE ioctl even when -the fb memory has not been allocated. Sigh. ---- - drivers/video/omap2/dss/overlay.c | 8 +++++--- - 1 files changed, 5 insertions(+), 3 deletions(-) - -diff --git a/drivers/video/omap2/dss/overlay.c b/drivers/video/omap2/dss/overlay.c -index 9209acf..c047206 100644 ---- a/drivers/video/omap2/dss/overlay.c -+++ b/drivers/video/omap2/dss/overlay.c -@@ -281,6 +281,11 @@ int dss_check_overlay(struct omap_overlay *ovl, struct omap_display *display) - - info = &ovl->info; - -+ if (info->paddr == 0) { -+ DSSDBG("check_overlay failed: paddr 0\n"); -+ return -EINVAL; -+ } -+ - display->get_resolution(display, &dw, &dh); - - DSSDBG("check_overlay %d: (%d,%d %dx%d -> %dx%d) disp (%dx%d)\n", -@@ -331,9 +336,6 @@ static int dss_ovl_set_overlay_info(struct omap_overlay *ovl, - int r; - struct omap_overlay_info old_info; - -- if (info->paddr == 0) -- return -EINVAL; -- - old_info = ovl->info; - ovl->info = *info; - --- -1.6.2.4 - |