[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>
This commit is contained in:
Geert Uytterhoeven
2007-06-16 07:19:23 +10:00
committed by Paul Mackerras
parent 743c1bb074
commit 83bb643d07
5 changed files with 10 additions and 10 deletions

View File

@ -27,9 +27,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 irqreturn_t ipi_function_handler(int irq, void *msg)