summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap-2.6.29/isp/v4l/0005-V4L-Int-if-Add-vidioc_int_querycap.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/isp/v4l/0005-V4L-Int-if-Add-vidioc_int_querycap.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/isp/v4l/0005-V4L-Int-if-Add-vidioc_int_querycap.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-omap-2.6.29/isp/v4l/0005-V4L-Int-if-Add-vidioc_int_querycap.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap-2.6.29/isp/v4l/0005-V4L-Int-if-Add-vidioc_int_querycap.patch b/meta/recipes-kernel/linux/linux-omap-2.6.29/isp/v4l/0005-V4L-Int-if-Add-vidioc_int_querycap.patch
new file mode 100644
index 0000000000..a9e06290fa
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-omap-2.6.29/isp/v4l/0005-V4L-Int-if-Add-vidioc_int_querycap.patch
@@ -0,0 +1,35 @@
1From dc05ee10583dca44e0f8d4109bd1397ee3c5ffae Mon Sep 17 00:00:00 2001
2From: Sakari Ailus <sakari.ailus@nokia.com>
3Date: Thu, 2 Oct 2008 11:55:07 +0300
4Subject: [PATCH] V4L: Int if: Add vidioc_int_querycap
5
6Signed-off-by: Sakari Ailus <sakari.ailus@nokia.com>
7---
8 include/media/v4l2-int-device.h | 4 +++-
9 1 files changed, 3 insertions(+), 1 deletions(-)
10
11diff --git a/include/media/v4l2-int-device.h b/include/media/v4l2-int-device.h
12index 81f4863..2830ae1 100644
13--- a/include/media/v4l2-int-device.h
14+++ b/include/media/v4l2-int-device.h
15@@ -173,7 +173,8 @@ enum v4l2_int_ioctl_num {
16 * "Proper" V4L ioctls, as in struct video_device.
17 *
18 */
19- vidioc_int_enum_fmt_cap_num = 1,
20+ vidioc_int_querycap_num = 1,
21+ vidioc_int_enum_fmt_cap_num,
22 vidioc_int_g_fmt_cap_num,
23 vidioc_int_s_fmt_cap_num,
24 vidioc_int_try_fmt_cap_num,
25@@ -278,6 +279,7 @@ enum v4l2_int_ioctl_num {
26 return desc; \
27 }
28
29+V4L2_INT_WRAPPER_1(querycap, struct v4l2_capability, *);
30 V4L2_INT_WRAPPER_1(enum_fmt_cap, struct v4l2_fmtdesc, *);
31 V4L2_INT_WRAPPER_1(g_fmt_cap, struct v4l2_format, *);
32 V4L2_INT_WRAPPER_1(s_fmt_cap, struct v4l2_format, *);
33--
341.5.6.5
35