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>
@@ -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;
@@ -30,9 +30,9 @@
/**
enum {
@@ -37,9 +37,9 @@
#if !defined(CONFIG_SMP)
@@ -27,9 +27,9 @@
static irqreturn_t ipi_function_handler(int irq, void *msg)