diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-08-31 09:53:41 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-11 15:02:01 -0400 |
commit | 73ea57eb5442aece696a7a03e2cd4509d38e55fd (patch) | |
tree | 04d48cc7bf37d6e3ca617820d3ed1a10c74c54e8 /include/media/omap3isp.h | |
parent | cf7a3d91ade6c56bfd860b377f84bd58132f7a81 (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.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/media/omap3isp.h b/include/media/omap3isp.h index 4d94be5226af..5ab9449fce1e 100644 --- a/include/media/omap3isp.h +++ b/include/media/omap3isp.h | |||
@@ -67,6 +67,8 @@ enum { | |||
67 | * 0 - Active high, 1 - Active low | 67 | * 0 - Active high, 1 - Active low |
68 | * @vs_pol: Vertical synchronization polarity | 68 | * @vs_pol: Vertical synchronization polarity |
69 | * 0 - Active high, 1 - Active low | 69 | * 0 - Active high, 1 - Active low |
70 | * @data_pol: Data polarity | ||
71 | * 0 - Normal, 1 - One's complement | ||
70 | * @bridge: CCDC Bridge input control | 72 | * @bridge: CCDC Bridge input control |
71 | * ISP_BRIDGE_DISABLE - Disable | 73 | * ISP_BRIDGE_DISABLE - Disable |
72 | * ISP_BRIDGE_LITTLE_ENDIAN - Little endian | 74 | * ISP_BRIDGE_LITTLE_ENDIAN - Little endian |
@@ -77,6 +79,7 @@ struct isp_parallel_platform_data { | |||
77 | unsigned int clk_pol:1; | 79 | unsigned int clk_pol:1; |
78 | unsigned int hs_pol:1; | 80 | unsigned int hs_pol:1; |
79 | unsigned int vs_pol:1; | 81 | unsigned int vs_pol:1; |
82 | unsigned int data_pol:1; | ||
80 | unsigned int bridge:2; | 83 | unsigned int bridge:2; |
81 | }; | 84 | }; |
82 | 85 | ||