summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-3.0/ulcd/0001-OMAP_VOUT-Fix-build-break-caused-by-update_mode-remo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-3.0/ulcd/0001-OMAP_VOUT-Fix-build-break-caused-by-update_mode-remo.patch')
-rw-r--r--recipes-kernel/linux/linux-3.0/ulcd/0001-OMAP_VOUT-Fix-build-break-caused-by-update_mode-remo.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-3.0/ulcd/0001-OMAP_VOUT-Fix-build-break-caused-by-update_mode-remo.patch b/recipes-kernel/linux/linux-3.0/ulcd/0001-OMAP_VOUT-Fix-build-break-caused-by-update_mode-remo.patch
new file mode 100644
index 00000000..71b9d317
--- /dev/null
+++ b/recipes-kernel/linux/linux-3.0/ulcd/0001-OMAP_VOUT-Fix-build-break-caused-by-update_mode-remo.patch
@@ -0,0 +1,44 @@
1From 47282736d78c31ba07a83748b3d8f7a1510e082e Mon Sep 17 00:00:00 2001
2From: archit taneja <archit@ti.com>
3Date: Fri, 5 Aug 2011 07:19:21 +0000
4Subject: [PATCH 1/2] OMAP_VOUT: Fix build break caused by update_mode removal in DSS2
5
6The DSS2 driver does not support the configuration of the update_mode of a
7panel anymore. Remove the setting of update_mode done in omap_vout_probe().
8Ignore configuration of TE since omap_vout driver doesn't support manual update
9displays anyway.
10
11Signed-off-by: Archit Taneja <archit@ti.com>
12Tested-by: Koen Kooi <koen@dominion.thruhere.net>
13Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
14---
15 drivers/media/video/omap/omap_vout.c | 13 -------------
16 1 files changed, 0 insertions(+), 13 deletions(-)
17
18diff --git a/drivers/media/video/omap/omap_vout.c b/drivers/media/video/omap/omap_vout.c
19index 4d07c58..d17d6b6 100644
20--- a/drivers/media/video/omap/omap_vout.c
21+++ b/drivers/media/video/omap/omap_vout.c
22@@ -2557,19 +2557,6 @@ static int __init omap_vout_probe(struct platform_device *pdev)
23 "'%s' Display already enabled\n",
24 def_display->name);
25 }
26- /* set the update mode */
27- if (def_display->caps &
28- OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE) {
29- if (dssdrv->enable_te)
30- dssdrv->enable_te(def_display, 0);
31- if (dssdrv->set_update_mode)
32- dssdrv->set_update_mode(def_display,
33- OMAP_DSS_UPDATE_MANUAL);
34- } else {
35- if (dssdrv->set_update_mode)
36- dssdrv->set_update_mode(def_display,
37- OMAP_DSS_UPDATE_AUTO);
38- }
39 }
40 }
41
42--
431.7.4.1
44