diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-03-04 19:11:15 +0100 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2014-03-06 05:14:03 +0100 |
commit | 56ff873122c4baab43df241c7701d043b8ec8a8e (patch) | |
tree | 67cfdf549ee3a5fe51d466f168998b7ef39ef879 /arch/arm/mach-shmobile/platsmp-apmu.c | |
parent | ARM: shmobile: Move SYSC base variable to inside ifdefs (diff) | |
download | linux-56ff873122c4baab43df241c7701d043b8ec8a8e.tar.xz linux-56ff873122c4baab43df241c7701d043b8ec8a8e.zip |
ARM: shmobile: APMU: Fix warnings due to improper printk formats
Use the %pr printk specifier to print resource variables. This fixes
warnings on platforms where resource_size_t has a different size than
int.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile/platsmp-apmu.c')
-rw-r--r-- | arch/arm/mach-shmobile/platsmp-apmu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/platsmp-apmu.c b/arch/arm/mach-shmobile/platsmp-apmu.c index 1da5a72d9642..8cb641c00fdb 100644 --- a/arch/arm/mach-shmobile/platsmp-apmu.c +++ b/arch/arm/mach-shmobile/platsmp-apmu.c @@ -75,8 +75,7 @@ static void apmu_init_cpu(struct resource *res, int cpu, int bit) apmu_cpus[cpu].iomem = ioremap_nocache(res->start, resource_size(res)); apmu_cpus[cpu].bit = bit; - pr_debug("apmu ioremap %d %d 0x%08x 0x%08x\n", cpu, bit, - res->start, resource_size(res)); + pr_debug("apmu ioremap %d %d %pr\n", cpu, bit, res); } static struct { |