diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2012-01-16 22:58:01 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-05-14 13:51:19 +0200 |
commit | 80b37e7fab78ad849f6a5c1b581d6b8b54e76b45 (patch) | |
tree | afc8bef6ebc441e8c20fa1cf589c0e97f0b4a5d8 /drivers/media/video/omap3isp/ispvideo.h | |
parent | [media] omap3isp: Refactor collecting information on entities in pipeline (diff) | |
download | linux-80b37e7fab78ad849f6a5c1b581d6b8b54e76b45.tar.xz linux-80b37e7fab78ad849f6a5c1b581d6b8b54e76b45.zip |
[media] omap3isp: Add information on external subdev to struct isp_pipeline
Add pointer to external subdev, pixel rate of the external subdev and bpp of
the format to struct isp_pipeline.
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/media/video/omap3isp/ispvideo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/video/omap3isp/ispvideo.h b/drivers/media/video/omap3isp/ispvideo.h index c9187cbc3557..5acc909500ec 100644 --- a/drivers/media/video/omap3isp/ispvideo.h +++ b/drivers/media/video/omap3isp/ispvideo.h @@ -104,6 +104,9 @@ struct isp_pipeline { bool do_propagation; /* of frame number */ bool error; struct v4l2_fract max_timeperframe; + struct v4l2_subdev *external; + unsigned int external_rate; + unsigned int external_bpp; }; #define to_isp_pipeline(__e) \ |