dma-mapping: remove dma_{alloc,free,mmap}_writecombine
We can already use DMA_ATTR_WRITE_COMBINE or the _wc prefixed version, so remove the third way of doing things. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
@@ -4609,11 +4609,10 @@ static int dispc_errata_i734_wa_init(struct dispc_device *dispc)
|
||||
i734_buf.size = i734.ovli.width * i734.ovli.height *
|
||||
color_mode_to_bpp(i734.ovli.fourcc) / 8;
|
||||
|
||||
i734_buf.vaddr = dma_alloc_writecombine(&dispc->pdev->dev,
|
||||
i734_buf.size, &i734_buf.paddr,
|
||||
GFP_KERNEL);
|
||||
i734_buf.vaddr = dma_alloc_wc(&dispc->pdev->dev, i734_buf.size,
|
||||
&i734_buf.paddr, GFP_KERNEL);
|
||||
if (!i734_buf.vaddr) {
|
||||
dev_err(&dispc->pdev->dev, "%s: dma_alloc_writecombine failed\n",
|
||||
dev_err(&dispc->pdev->dev, "%s: dma_alloc_wc failed\n",
|
||||
__func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@@ -4626,8 +4625,8 @@ static void dispc_errata_i734_wa_fini(struct dispc_device *dispc)
|
||||
if (!dispc->feat->has_gamma_i734_bug)
|
||||
return;
|
||||
|
||||
dma_free_writecombine(&dispc->pdev->dev, i734_buf.size, i734_buf.vaddr,
|
||||
i734_buf.paddr);
|
||||
dma_free_wc(&dispc->pdev->dev, i734_buf.size, i734_buf.vaddr,
|
||||
i734_buf.paddr);
|
||||
}
|
||||
|
||||
static void dispc_errata_i734_wa(struct dispc_device *dispc)
|
||||
|
Reference in New Issue
Block a user