From: Stephen Rothwell Date: Fri, 22 Feb 2019 05:14:45 +0000 (+1100) Subject: remoteproc: fix for "dma-mapping: remove the DMA_MEMORY_EXCLUSIVE flag" X-Git-Tag: v5.15~6773^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d664ce75ae1c7c1e0e3fd8fa71f7ca779906a9be;p=mirror_ubuntu-kernels.git remoteproc: fix for "dma-mapping: remove the DMA_MEMORY_EXCLUSIVE flag" The commit 82c5de0ab8db ("dma-mapping: remove the DMA_MEMORY_EXCLUSIVE flag") removed the "flags" parameter for dma_declare_coherent_memory(). Remove the parameter from the call in rproc_add_virtio_dev(). Signed-off-by: Stephen Rothwell [bjorn: Extended commit message] Signed-off-by: Bjorn Andersson --- diff --git a/drivers/remoteproc/remoteproc_virtio.c b/drivers/remoteproc/remoteproc_virtio.c index b7a987d1b962..e3f67afe8171 100644 --- a/drivers/remoteproc/remoteproc_virtio.c +++ b/drivers/remoteproc/remoteproc_virtio.c @@ -365,8 +365,7 @@ int rproc_add_virtio_dev(struct rproc_vdev *rvdev, int id) /* Associate vdev buffer memory pool to vdev subdev */ ret = dma_declare_coherent_memory(dev, pa, mem->da, - mem->len, - DMA_MEMORY_EXCLUSIVE); + mem->len); if (ret < 0) { dev_err(dev, "Failed to associate buffer\n"); goto out;