aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorDmitry V. Krivenok <krivenok.dmitry@gmail.com>2015-11-30 23:45:48 +0300
committerRob Herring <robh@kernel.org>2015-11-30 17:56:54 -0600
commit78bb2abe09d6bd15eeee7250f2fa0cb76432a8a2 (patch)
tree29069322b4e244b97001f7c93976be90441dfcec /drivers/of
parentof: Fix comparison of reserved memory regions (diff)
downloadlinux-dev-78bb2abe09d6bd15eeee7250f2fa0cb76432a8a2.tar.xz
linux-dev-78bb2abe09d6bd15eeee7250f2fa0cb76432a8a2.zip
of: do not use 0x in front of %pa
Signed-off-by: Dmitry V. Krivenok <krivenok.dmitry@gmail.com> Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/fdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
index d2430298a309..1bbe3a990ef1 100644
--- a/drivers/of/fdt.c
+++ b/drivers/of/fdt.c
@@ -1041,7 +1041,7 @@ void __init __weak early_init_dt_add_memory_arch(u64 base, u64 size)
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%pa - 0x%pa%s\n",
+ pr_err("Reserved memory not supported, ignoring range %pa - %pa%s\n",
&base, &size, nomap ? " (nomap)" : "");
return -ENOSYS;
}