diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2007-06-16 07:19:23 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-06-28 19:16:36 +1000 |
commit | 83bb643d0714b0006ab99dbd195ec51b55a97f4e (patch) | |
tree | 4aaae9405002687bc4169eb77927bc04761681ea /arch/powerpc/platforms/ps3/htab.c | |
parent | 743c1bb074c78cb467e42a18853c22e9cf1cd0ba (diff) | |
download | blackbird-op-linux-83bb643d0714b0006ab99dbd195ec51b55a97f4e.tar.gz blackbird-op-linux-83bb643d0714b0006ab99dbd195ec51b55a97f4e.zip |
[POWERPC] PS3: Simplify definition of DBG
Simplify the PS3 definition of DBG.
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/ps3/htab.c')
-rw-r--r-- | arch/powerpc/platforms/ps3/htab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/ps3/htab.c b/arch/powerpc/platforms/ps3/htab.c index 0f4eb1251d7f..d741edd96a24 100644 --- a/arch/powerpc/platforms/ps3/htab.c +++ b/arch/powerpc/platforms/ps3/htab.c @@ -29,9 +29,9 @@ #include "platform.h" #if defined(DEBUG) -#define DBG(fmt...) udbg_printf(fmt) +#define DBG udbg_printf #else -#define DBG(fmt...) do{if(0)printk(fmt);}while(0) +#define DBG pr_debug #endif static struct hash_pte *htab; |