diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2014-03-09 20:57:53 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-05-25 11:33:27 -0300 |
commit | eb2c00d20113f5491e2f5d001a5e27f9e75d59f5 (patch) | |
tree | 6c197fbccaa31d5242f2b522d039da83fcb0e819 /drivers/media/platform/omap3isp/ispvideo.h | |
parent | e8feb876d40f1428e40da33ee7dc2a7807cc145c (diff) | |
download | linux-eb2c00d20113f5491e2f5d001a5e27f9e75d59f5.tar.gz |
[media] omap3isp: Move buffer irqlist to isp_buffer structure
This prepares for the move to videobuf2.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/platform/omap3isp/ispvideo.h')
-rw-r--r-- | drivers/media/platform/omap3isp/ispvideo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/platform/omap3isp/ispvideo.h b/drivers/media/platform/omap3isp/ispvideo.h index 0fa098cc04bb..1e3d17a70df2 100644 --- a/drivers/media/platform/omap3isp/ispvideo.h +++ b/drivers/media/platform/omap3isp/ispvideo.h @@ -127,10 +127,12 @@ static inline int isp_pipeline_ready(struct isp_pipeline *pipe) /* * struct isp_buffer - ISP buffer * @buffer: ISP video buffer + * @irqlist: List head for insertion into IRQ queue * @isp_addr: MMU mapped address (a.k.a. device address) of the buffer. */ struct isp_buffer { struct isp_video_buffer buffer; + struct list_head irqlist; dma_addr_t isp_addr; }; |