]> git.karo-electronics.de Git - linux-beck.git/commitdiff
iommu/arm-smmu: Remove unneeded '0x' annotation
authorFabio Estevam <fabio.estevam@freescale.com>
Tue, 18 Aug 2015 16:12:24 +0000 (17:12 +0100)
committerWill Deacon <will.deacon@arm.com>
Wed, 14 Oct 2015 12:43:50 +0000 (13:43 +0100)
'%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>
drivers/iommu/arm-smmu.c

index 48a39dfa977795deb8271dc5b34a7b3e0be002d0..677fba9e6b11e33c2fcbaa41e15383f313ae14f6 100644 (file)
@@ -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,
                                      !(tmp & ATSR_ACTIVE), 5, 50)) {
                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);
                return ops->iova_to_phys(ops, iova);
        }