diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2014-03-10 03:17:12 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-05-25 18:40:09 +0400 |
commit | 21d8582d480443574d6a8811e25ccb65dff974d5 (patch) | |
tree | 60e5b43f64ac39cbc8d7404250ed3d7fbeb51332 /drivers/media/platform/omap3isp/ispvideo.h | |
parent | fbac1400bd1a7a88191dd71442ef2c282ad1816c (diff) | |
download | linux-21d8582d480443574d6a8811e25ccb65dff974d5.tar.xz |
[media] omap3isp: Rename isp_buffer isp_addr field to dma
No functional changes.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/omap3isp/ispvideo.h b/drivers/media/platform/omap3isp/ispvideo.h index 1015505963a4..7d2e82122ecd 100644 --- a/drivers/media/platform/omap3isp/ispvideo.h +++ b/drivers/media/platform/omap3isp/ispvideo.h @@ -127,12 +127,12 @@ static inline int isp_pipeline_ready(struct isp_pipeline *pipe) * struct isp_buffer - ISP video buffer * @vb: videobuf2 buffer * @irqlist: List head for insertion into IRQ queue - * @isp_addr: DMA address + * @dma: DMA address */ struct isp_buffer { struct vb2_buffer vb; struct list_head irqlist; - dma_addr_t isp_addr; + dma_addr_t dma; }; #define to_isp_buffer(buf) container_of(buf, struct isp_buffer, vb) |