]> Pileus Git - ~andy/linux/commitdiff
powerpc: Convert print_symbol to %pSR
authorJoe Perches <joe@perches.com>
Wed, 12 Dec 2012 08:19:00 +0000 (08:19 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 10 Jan 2013 06:01:16 +0000 (17:01 +1100)
Use the new vsprintf extension to avoid any possible
message interleaving.

Convert the #ifdef DEBUG block to a single pr_debug.

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/platforms/cell/spu_callbacks.c

index 75d613313f10c4acceccd75199693730b1b9bbaa..b0ec78e8ad68882e0237beffa1612471cd4f4662 100644 (file)
@@ -60,13 +60,12 @@ long spu_sys_callback(struct spu_syscall_block *s)
 
        syscall = spu_syscall_table[s->nr_ret];
 
-#ifdef DEBUG
-       print_symbol(KERN_DEBUG "SPU-syscall %s:", (unsigned long)syscall);
-       printk("syscall%ld(%lx, %lx, %lx, %lx, %lx, %lx)\n",
-                       s->nr_ret,
-                       s->parm[0], s->parm[1], s->parm[2],
-                       s->parm[3], s->parm[4], s->parm[5]);
-#endif
+       pr_debug("SPU-syscall "
+                "%pSR:syscall%lld(%llx, %llx, %llx, %llx, %llx, %llx)\n",
+                syscall,
+                s->nr_ret,
+                s->parm[0], s->parm[1], s->parm[2],
+                s->parm[3], s->parm[4], s->parm[5]);
 
        return syscall(s->parm[0], s->parm[1], s->parm[2],
                       s->parm[3], s->parm[4], s->parm[5]);