From: Greg Kroah-Hartman Date: Thu, 9 Jan 2014 17:31:38 +0000 (-0800) Subject: staging: wlags49_h2: remove PRINTK() X-Git-Tag: upstream/snapshot3+hdmi~3491^2~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da61fde70e3f14269ee59554da7941e499f9364f;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git staging: wlags49_h2: remove PRINTK() It was just a call to printk() so make that instead. Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wlags49_h2/debug.h b/drivers/staging/wlags49_h2/debug.h index 792a1f7..10aa2b3 100644 --- a/drivers/staging/wlags49_h2/debug.h +++ b/drivers/staging/wlags49_h2/debug.h @@ -105,18 +105,13 @@ #define DBG_LEVEL(A) ((A)->dbgLevel) -#ifndef PRINTK -# define PRINTK(S...) printk(S) -#endif /* PRINTK */ - - #ifndef DBG_PRINT -# define DBG_PRINT(S...) PRINTK(KERN_DEBUG S) +# define DBG_PRINT(S...) printk(KERN_DEBUG S) #endif /* DBG_PRINT */ #ifndef DBG_PRINTC -# define DBG_PRINTC(S...) PRINTK(S) +# define DBG_PRINTC(S...) printk(S) #endif /* DBG_PRINTC */