aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/iommu/omap-iommu.c
diff options
context:
space:
mode:
authorJoerg Roedel <jroedel@suse.de>2015-01-22 14:42:06 +0100
committerJoerg Roedel <jroedel@suse.de>2015-01-30 14:08:07 +0100
commit1d7f449c898b4180b9db79007f23f599b5bb879e (patch)
tree5724ca4eb0ef8c21c0a50b05c4862dd354d9a004 /drivers/iommu/omap-iommu.c
parentLinux 3.19-rc6 (diff)
downloadwireguard-linux-1d7f449c898b4180b9db79007f23f599b5bb879e.tar.xz
wireguard-linux-1d7f449c898b4180b9db79007f23f599b5bb879e.zip
iommu/omap: Print phys_addr_t using %pa
Fixes this compile warning: drivers/iommu/omap-iommu.c: In function 'omap_iommu_map': drivers/iommu/omap-iommu.c:1139:2: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'phys_addr_t' [-Wformat=] dev_dbg(dev, "mapping da 0x%lx to pa 0x%x size 0x%x\n", da, pa, bytes); Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/omap-iommu.c')
-rw-r--r--drivers/iommu/omap-iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/omap-iommu.c b/drivers/iommu/omap-iommu.c
index bbb7dcef02d3..f59f857b702e 100644
--- a/drivers/iommu/omap-iommu.c
+++ b/drivers/iommu/omap-iommu.c
@@ -1126,7 +1126,7 @@ static int omap_iommu_map(struct iommu_domain *domain, unsigned long da,
return -EINVAL;
}
- dev_dbg(dev, "mapping da 0x%lx to pa 0x%x size 0x%x\n", da, pa, bytes);
+ dev_dbg(dev, "mapping da 0x%lx to pa %pa size 0x%x\n", da, &pa, bytes);
iotlb_init_entry(&e, da, pa, omap_pgsz);