diff options
Diffstat (limited to 'isp/omap3isp-priv.h')
-rw-r--r-- | isp/omap3isp-priv.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/isp/omap3isp-priv.h b/isp/omap3isp-priv.h index e9dae0c..4e3d8cf 100644 --- a/isp/omap3isp-priv.h +++ b/isp/omap3isp-priv.h @@ -28,6 +28,8 @@ #include "omap3isp.h" #include "tools.h" +struct omap3_isp_device; + /* * struct omap3_isp_pad - OMAP3 entity pad * @link: Link connected to the pad @@ -88,6 +90,7 @@ struct omap3_isp_video { * struct omap3_isp_pool - OMAP3 buffers pool * @entity: OMAP3 entity * @list: Pools list + * @isp: OMAP3 ISP device * @input: Capture video device * @output: Output video device * @pool: Buffers pool @@ -95,6 +98,7 @@ struct omap3_isp_video { struct omap3_isp_pool { struct omap3_isp_entity entity; struct list_entry list; + struct omap3_isp_device *isp; struct omap3_isp_video *input; struct omap3_isp_video *output; struct v4l2_buffers_pool *pool; |