diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2014-06-23 16:32:17 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2014-10-01 00:46:03 +0300 |
commit | a34d8843092e260432b94c63d6534160897ec678 (patch) | |
tree | 0bfee3e44b6ecf973e70d4a0b78852626e6881ab /include/linux/v4l2-common.h | |
parent | dd976f709034f31c0176d76646e9cd60fe14de7e (diff) |
Update headers from upstream kernel
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include/linux/v4l2-common.h')
-rw-r--r-- | include/linux/v4l2-common.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/v4l2-common.h b/include/linux/v4l2-common.h index 4f0667e..2f6f8ca 100644 --- a/include/linux/v4l2-common.h +++ b/include/linux/v4l2-common.h @@ -29,6 +29,8 @@ #ifndef __V4L2_COMMON__ #define __V4L2_COMMON__ +#include <linux/types.h> + /* * * Selection interface definitions @@ -68,4 +70,12 @@ #define V4L2_SUBDEV_SEL_FLAG_SIZE_LE V4L2_SEL_FLAG_LE #define V4L2_SUBDEV_SEL_FLAG_KEEP_CONFIG V4L2_SEL_FLAG_KEEP_CONFIG +struct v4l2_edid { + __u32 pad; + __u32 start_block; + __u32 blocks; + __u32 reserved[5]; + __u8 *edid; +}; + #endif /* __V4L2_COMMON__ */ |