Revert "remoteproc: stm32: fix phys_addr_t format string"

This reverts commit 5148026b65 which is
commit 3e25e407a1c93b53a87a7743ea0cd4703d3985b7 upstream.

It breaks the Android kernel abi and can be brought back in the future
in an abi-safe way if it is really needed.

Bug: 161946584
Change-Id: I3f103fd05d2a7aeb35665162aa2f10d021d01cc0
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Greg Kroah-Hartman 2024-05-20 10:46:57 +00:00
parent a626900b07
commit 7cb2a3c384

View File

@ -569,7 +569,7 @@ static int stm32_rproc_da_to_pa(struct rproc *rproc,
continue;
*pa = da - p_mem->dev_addr + p_mem->bus_addr;
dev_dbg(dev, "da %llx to pa %pap\n", da, pa);
dev_dbg(dev, "da %llx to pa %#x\n", da, *pa);
return 0;
}