diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-08-18 12:12:24 -0400 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-10-14 08:43:50 -0400 |
commit | 077124c98da3aa5aaf498fd0980ed14eaf777c09 (patch) | |
tree | f664be651732deefdda95b1c0c2cad3ea54d830b /drivers/iommu/arm-smmu.c | |
parent | 941a802d939221028baf6d19afd6dc8652219a81 (diff) |
iommu/arm-smmu: Remove unneeded '0x' annotation
'%pad' automatically prints with '0x', so remove the explicit '0x'
annotation.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'drivers/iommu/arm-smmu.c')
-rw-r--r-- | drivers/iommu/arm-smmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c index 48a39dfa9777..677fba9e6b11 100644 --- a/drivers/iommu/arm-smmu.c +++ b/drivers/iommu/arm-smmu.c | |||
@@ -1222,7 +1222,7 @@ static phys_addr_t arm_smmu_iova_to_phys_hard(struct iommu_domain *domain, | |||
1222 | if (readl_poll_timeout_atomic(cb_base + ARM_SMMU_CB_ATSR, tmp, | 1222 | if (readl_poll_timeout_atomic(cb_base + ARM_SMMU_CB_ATSR, tmp, |
1223 | !(tmp & ATSR_ACTIVE), 5, 50)) { | 1223 | !(tmp & ATSR_ACTIVE), 5, 50)) { |
1224 | dev_err(dev, | 1224 | dev_err(dev, |
1225 | "iova to phys timed out on 0x%pad. Falling back to software table walk.\n", | 1225 | "iova to phys timed out on %pad. Falling back to software table walk.\n", |
1226 | &iova); | 1226 | &iova); |
1227 | return ops->iova_to_phys(ops, iova); | 1227 | return ops->iova_to_phys(ops, iova); |
1228 | } | 1228 | } |