Commit 80137b40 authored by Loic Pallardy's avatar Loic Pallardy Committed by Bjorn Andersson
Browse files

remoteproc: fix rproc_alloc_carveout() bad variable cast



As dma member of struct rproc_mem_entry is dma_addr_t, no
need to cast in u32.

Fixes: d7c51706 ("remoteproc: add alloc ops in rproc_mem_entry struct")

Signed-off-by: default avatarLoic Pallardy <loic.pallardy@st.com>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent 74457c40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -819,7 +819,7 @@ static int rproc_alloc_carveout(struct rproc *rproc,
		mem->da = (u32)dma;
	}

	mem->dma = (u32)dma;
	mem->dma = dma;
	mem->va = va;

	return 0;