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

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
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment