aboutsummaryrefslogtreecommitdiffstats
path: root/include/media/omap3isp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/media/omap3isp.h')
-rw-r--r--include/media/omap3isp.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/media/omap3isp.h b/include/media/omap3isp.h
index 95842696857f..c9d06d9f7e6e 100644
--- a/include/media/omap3isp.h
+++ b/include/media/omap3isp.h
@@ -29,10 +29,6 @@
29struct i2c_board_info; 29struct i2c_board_info;
30struct isp_device; 30struct isp_device;
31 31
32#define ISP_XCLK_NONE 0
33#define ISP_XCLK_A 1
34#define ISP_XCLK_B 2
35
36enum isp_interface_type { 32enum isp_interface_type {
37 ISP_INTERFACE_PARALLEL, 33 ISP_INTERFACE_PARALLEL,
38 ISP_INTERFACE_CSI2A_PHY2, 34 ISP_INTERFACE_CSI2A_PHY2,
@@ -153,7 +149,13 @@ struct isp_v4l2_subdevs_group {
153 } bus; /* gcc < 4.6.0 chokes on anonymous union initializers */ 149 } bus; /* gcc < 4.6.0 chokes on anonymous union initializers */
154}; 150};
155 151
152struct isp_platform_xclk {
153 const char *dev_id;
154 const char *con_id;
155};
156
156struct isp_platform_data { 157struct isp_platform_data {
158 struct isp_platform_xclk xclks[2];
157 struct isp_v4l2_subdevs_group *subdevs; 159 struct isp_v4l2_subdevs_group *subdevs;
158 void (*set_constraints)(struct isp_device *isp, bool enable); 160 void (*set_constraints)(struct isp_device *isp, bool enable);
159}; 161};