Commit 077124c9 authored by Fabio Estevam's avatar Fabio Estevam Committed by Will Deacon

iommu/arm-smmu: Remove unneeded '0x' annotation

'%pad' automatically prints with '0x', so remove the explicit '0x'
annotation.
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
parent 941a802d
...@@ -1222,7 +1222,7 @@ static phys_addr_t arm_smmu_iova_to_phys_hard(struct iommu_domain *domain, ...@@ -1222,7 +1222,7 @@ static phys_addr_t arm_smmu_iova_to_phys_hard(struct iommu_domain *domain,
if (readl_poll_timeout_atomic(cb_base + ARM_SMMU_CB_ATSR, tmp, if (readl_poll_timeout_atomic(cb_base + ARM_SMMU_CB_ATSR, tmp,
!(tmp & ATSR_ACTIVE), 5, 50)) { !(tmp & ATSR_ACTIVE), 5, 50)) {
dev_err(dev, dev_err(dev,
"iova to phys timed out on 0x%pad. Falling back to software table walk.\n", "iova to phys timed out on %pad. Falling back to software table walk.\n",
&iova); &iova);
return ops->iova_to_phys(ops, iova); return ops->iova_to_phys(ops, iova);
} }
......
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