summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0045-DSS2-Fixed-line-endings-from-to.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0045-DSS2-Fixed-line-endings-from-to.patch
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0045-DSS2-Fixed-line-endings-from-to.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0045-DSS2-Fixed-line-endings-from-to.patch48
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0045-DSS2-Fixed-line-endings-from-to.patch b/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0045-DSS2-Fixed-line-endings-from-to.patch
new file mode 100644
index 0000000000..9382469850
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0045-DSS2-Fixed-line-endings-from-to.patch
@@ -0,0 +1,48 @@
1From b0e081456a9b094109c04467d041ff693843ca47 Mon Sep 17 00:00:00 2001
2From: Tomi Valkeinen <tomi.valkeinen@nokia.com>
3Date: Tue, 21 Apr 2009 09:25:16 +0300
4Subject: [PATCH] DSS2: Fixed line endings from , to ;
5
6---
7 drivers/video/omap2/dss/manager.c | 18 +++++++++---------
8 1 files changed, 9 insertions(+), 9 deletions(-)
9
10diff --git a/drivers/video/omap2/dss/manager.c b/drivers/video/omap2/dss/manager.c
11index 108489c..bf059e0 100644
12--- a/drivers/video/omap2/dss/manager.c
13+++ b/drivers/video/omap2/dss/manager.c
14@@ -599,22 +599,22 @@ int dss_init_overlay_managers(struct platform_device *pdev)
15 break;
16 }
17
18- mgr->set_display = &omap_dss_set_display,
19- mgr->unset_display = &omap_dss_unset_display,
20- mgr->apply = &omap_dss_mgr_apply,
21- mgr->set_default_color = &omap_dss_mgr_set_def_color,
22+ mgr->set_display = &omap_dss_set_display;
23+ mgr->unset_display = &omap_dss_unset_display;
24+ mgr->apply = &omap_dss_mgr_apply;
25+ mgr->set_default_color = &omap_dss_mgr_set_def_color;
26 mgr->set_trans_key_type_and_value =
27- &omap_dss_mgr_set_trans_key_type_and_value,
28+ &omap_dss_mgr_set_trans_key_type_and_value;
29 mgr->get_trans_key_type_and_value =
30- &omap_dss_mgr_get_trans_key_type_and_value,
31- mgr->enable_trans_key = &omap_dss_mgr_enable_trans_key,
32- mgr->get_trans_key_status = &omap_dss_mgr_get_trans_key_status,
33+ &omap_dss_mgr_get_trans_key_type_and_value;
34+ mgr->enable_trans_key = &omap_dss_mgr_enable_trans_key;
35+ mgr->get_trans_key_status = &omap_dss_mgr_get_trans_key_status;
36 mgr->enable_alpha_blending =
37 &omap_dss_mgr_enable_alpha_blending;
38 mgr->get_alpha_blending_status =
39 omap_dss_mgr_get_alpha_blending_status;
40 mgr->get_default_color = &omap_dss_mgr_get_default_color;
41- mgr->caps = OMAP_DSS_OVL_MGR_CAP_DISPC,
42+ mgr->caps = OMAP_DSS_OVL_MGR_CAP_DISPC;
43
44 dss_overlay_setup_dispc_manager(mgr);
45
46--
471.5.6.5
48