]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc: Use vsprintf extention %pf with builtin_return_address
authorJoe Perches <joe@perches.com>
Tue, 28 Feb 2012 08:49:34 +0000 (08:49 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 7 Mar 2012 06:06:09 +0000 (17:06 +1100)
Emit the function name not the address when possible.

builtin_return_address() gives an address.  When building
a kernel with CONFIG_KALLSYMS, emit the actual function
name not the address.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/mm/pgtable_32.c

index 51f87956f8f87ebbc463085c2b44c55f048a166e..0907f92ce309258beb1cd964018b94a9146e2cec 100644 (file)
@@ -207,7 +207,7 @@ __ioremap_caller(phys_addr_t addr, unsigned long size, unsigned long flags,
         */
        if (mem_init_done && (p < virt_to_phys(high_memory)) &&
            !(__allow_ioremap_reserved && memblock_is_region_reserved(p, size))) {
-               printk("__ioremap(): phys addr 0x%llx is RAM lr %p\n",
+               printk("__ioremap(): phys addr 0x%llx is RAM lr %pf\n",
                       (unsigned long long)p, __builtin_return_address(0));
                return NULL;
        }