aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/v4l2-mediabus.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/include/linux/v4l2-mediabus.h b/include/linux/v4l2-mediabus.h
index a62cd64e8462..feeb88cf705e 100644
--- a/include/linux/v4l2-mediabus.h
+++ b/include/linux/v4l2-mediabus.h
@@ -63,16 +63,17 @@ enum v4l2_mbus_pixelcode {
63 * struct v4l2_mbus_framefmt - frame format on the media bus 63 * struct v4l2_mbus_framefmt - frame format on the media bus
64 * @width: frame width 64 * @width: frame width
65 * @height: frame height 65 * @height: frame height
66 * @code: data format code 66 * @code: data format code (from enum v4l2_mbus_pixelcode)
67 * @field: used interlacing type 67 * @field: used interlacing type (from enum v4l2_field)
68 * @colorspace: colorspace of the data 68 * @colorspace: colorspace of the data (from enum v4l2_colorspace)
69 */ 69 */
70struct v4l2_mbus_framefmt { 70struct v4l2_mbus_framefmt {
71 __u32 width; 71 __u32 width;
72 __u32 height; 72 __u32 height;
73 __u32 code; 73 __u32 code;
74 enum v4l2_field field; 74 __u32 field;
75 enum v4l2_colorspace colorspace; 75 __u32 colorspace;
76 __u32 reserved[7];
76}; 77};
77 78
78#endif 79#endif