diff options
author | Rob Herring <robh@kernel.org> | 2014-04-22 12:50:24 -0500 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2014-04-30 00:59:17 -0500 |
commit | 1d1a661da4c8468b3fa6f567b2b1f8cdeafa847a (patch) | |
tree | 2ab5a37629e2c5fd2f8d73becbdb286b0f63a4c4 /drivers/of | |
parent | d1552ce449eb0a8d2f0bd6599da3a8a3d7f77a84 (diff) | |
download | op-kernel-dev-1d1a661da4c8468b3fa6f567b2b1f8cdeafa847a.zip op-kernel-dev-1d1a661da4c8468b3fa6f567b2b1f8cdeafa847a.tar.gz |
of/fdt: fix phys_addr_t related print size warnings
Fix warnings in early_init_dt_reserve_memory_arch when phys_addr_t is
32-bit and memblock is not enabled.
Signed-off-by: Rob Herring <robh@kernel.org>
Tested-by: Grant Likely <grant.likely@linaro.org>
Tested-by: Stephen Chivers <schivers@csc.com>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/fdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c index 051be4c..d9e6450 100644 --- a/drivers/of/fdt.c +++ b/drivers/of/fdt.c @@ -852,8 +852,8 @@ void * __init __weak early_init_dt_alloc_memory_arch(u64 size, u64 align) int __init __weak early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, bool nomap) { - pr_err("Reserved memory not supported, ignoring range 0x%llx - 0x%llx%s\n", - base, size, nomap ? " (nomap)" : ""); + pr_err("Reserved memory not supported, ignoring range 0x%pa - 0x%pa%s\n", + &base, &size, nomap ? " (nomap)" : ""); return -ENOSYS; } #endif |