Merge tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[linux-2.6-block.git] / include / media / vsp1.h
index 678c24de1ac6368d7f2a786b4bee04b07ffeaef0..3093b9cb9067e0a9599fdfd5d081e1ff08029f7b 100644 (file)
@@ -25,6 +25,7 @@ int vsp1_du_init(struct device *dev);
  * struct vsp1_du_lif_config - VSP LIF configuration
  * @width: output frame width
  * @height: output frame height
+ * @interlaced: true for interlaced pipelines
  * @callback: frame completion callback function (optional). When a callback
  *           is provided, the VSP driver guarantees that it will be called once
  *           and only once for each vsp1_du_atomic_flush() call.
@@ -33,6 +34,7 @@ int vsp1_du_init(struct device *dev);
 struct vsp1_du_lif_config {
        unsigned int width;
        unsigned int height;
+       bool interlaced;
 
        void (*callback)(void *data, bool completed, u32 crc);
        void *callback_data;