aboutsummaryrefslogtreecommitdiff
path: root/include/media/omap3isp.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-08-31 10:53:41 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-08-11 16:02:01 -0300
commit73ea57eb5442aece696a7a03e2cd4509d38e55fd (patch)
tree04d48cc7bf37d6e3ca617820d3ed1a10c74c54e8 /include/media/omap3isp.h
parentcf7a3d91ade6c56bfd860b377f84bd58132f7a81 (diff)
[media] omap3isp: ccdc: Remove ispccdc_syncif structure
The structure is only used to store configuration data and pass it to CCDC configuration functions. Access the data directly from the locations that need it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/omap3isp.h')
-rw-r--r--include/media/omap3isp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/media/omap3isp.h b/include/media/omap3isp.h
index 4d94be5226a..5ab9449fce1 100644
--- a/include/media/omap3isp.h
+++ b/include/media/omap3isp.h
@@ -67,6 +67,8 @@ enum {
* 0 - Active high, 1 - Active low
* @vs_pol: Vertical synchronization polarity
* 0 - Active high, 1 - Active low
+ * @data_pol: Data polarity
+ * 0 - Normal, 1 - One's complement
* @bridge: CCDC Bridge input control
* ISP_BRIDGE_DISABLE - Disable
* ISP_BRIDGE_LITTLE_ENDIAN - Little endian
@@ -77,6 +79,7 @@ struct isp_parallel_platform_data {
unsigned int clk_pol:1;
unsigned int hs_pol:1;
unsigned int vs_pol:1;
+ unsigned int data_pol:1;
unsigned int bridge:2;
};