summaryrefslogtreecommitdiff
path: root/drivers/media/pci/ttpci/av7110.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2016-10-14 07:58:43 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-11-18 09:40:43 -0200
commita80e1d965cb9a77f20a493021e816761f8785faf (patch)
treea76dbb95a5da03e6c3def9d7911f94b9bcda4df4 /drivers/media/pci/ttpci/av7110.h
parent61fc87498bc6a5becd30162e23928168b1e32318 (diff)
[media] ttpci: cleanup debug macros and remove dead code
Continuation lines without KERN_CONT won't work anymore. However, the way dprintk() was defined leads to the usage of continuation lines, with should be avoided when possible. So, redefine those macros. While hre, remove some dead code at av7110.c with also relies on continuation lines. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/pci/ttpci/av7110.h')
-rw-r--r--drivers/media/pci/ttpci/av7110.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/media/pci/ttpci/av7110.h b/drivers/media/pci/ttpci/av7110.h
index 3707ccd02732..824c1e262fbb 100644
--- a/drivers/media/pci/ttpci/av7110.h
+++ b/drivers/media/pci/ttpci/av7110.h
@@ -40,8 +40,11 @@
extern int av7110_debug;
-#define dprintk(level,args...) \
- do { if ((av7110_debug & level)) { printk("dvb-ttpci: %s(): ", __func__); printk(args); } } while (0)
+#define dprintk(level, fmt, arg...) do { \
+ if (level & av7110_debug) \
+ printk(KERN_DEBUG KBUILD_MODNAME ": %s(): " fmt, \
+ __func__, ##arg); \
+} while (0)
#define MAXFILT 32