summaryrefslogtreecommitdiff
path: root/drivers/staging/wlags49_h2
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-01-09 09:31:38 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-01-09 09:31:38 -0800
commitda61fde70e3f14269ee59554da7941e499f9364f (patch)
treee9128a13a9ae9b446cc2ad33d0b0d5c67b5be801 /drivers/staging/wlags49_h2
parent66df924b8ab5f4a86a4db3e5cbcf2527dcd15eff (diff)
staging: wlags49_h2: remove PRINTK()
It was just a call to printk() so make that instead. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wlags49_h2')
-rw-r--r--drivers/staging/wlags49_h2/debug.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/staging/wlags49_h2/debug.h b/drivers/staging/wlags49_h2/debug.h
index 792a1f76f4ef..10aa2b3ecbc4 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 */