mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
remoteproc: coredump: Correct argument 2 type for memcpy_fromio
Address the sparse check warning: >> drivers/remoteproc/remoteproc_coredump.c:169:53: sparse: warning: incorrect type in argument 2 (different address spaces) sparse: expected void const volatile [noderef] __iomem *src sparse: got void *[assigned] ptr Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Peng Fan <peng.fan@nxp.com> Link: https://lore.kernel.org/r/20211110032101.517487-1-peng.fan@oss.nxp.com Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
This commit is contained in:
parent
4da9617501
commit
876e0b26cc
@ -166,7 +166,7 @@ static void rproc_copy_segment(struct rproc *rproc, void *dest,
|
||||
memset(dest, 0xff, size);
|
||||
} else {
|
||||
if (is_iomem)
|
||||
memcpy_fromio(dest, ptr, size);
|
||||
memcpy_fromio(dest, (void const __iomem *)ptr, size);
|
||||
else
|
||||
memcpy(dest, ptr, size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user