mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-12 16:11:04 +00:00
ARM: dmabounce: correct unmap_single dev_dbg
DMA addresses should not be casted to void * for printing. Fix that to be consistent with the rest of the file. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
dfa322fceb
commit
c289b2e0cc
@ -345,8 +345,8 @@ void __dma_unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
|
|||||||
{
|
{
|
||||||
struct safe_buffer *buf;
|
struct safe_buffer *buf;
|
||||||
|
|
||||||
dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n",
|
dev_dbg(dev, "%s(dma=%#x,size=%d,dir=%x)\n",
|
||||||
__func__, (void *) dma_addr, size, dir);
|
__func__, dma_addr, size, dir);
|
||||||
|
|
||||||
buf = find_safe_buffer_dev(dev, dma_addr, __func__);
|
buf = find_safe_buffer_dev(dev, dma_addr, __func__);
|
||||||
if (!buf) {
|
if (!buf) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user