summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/ttpci/budget.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <devnull@localhost>2006-01-09 17:17:32 +0000
committerMauro Carvalho Chehab <devnull@localhost>2006-01-09 17:17:32 +0000
commit6807eba35cc91e109fed1df6038c424496cf2add (patch)
tree475351eb821b9e5a741faa5ba2f97e27cbf2e857 /linux/drivers/media/dvb/ttpci/budget.h
parent1faa3dcb3917ba99177697e1b8b4473e388744f8 (diff)
downloadmediapointer-dvb-s2-6807eba35cc91e109fed1df6038c424496cf2add.tar.gz
mediapointer-dvb-s2-6807eba35cc91e109fed1df6038c424496cf2add.tar.bz2
Several i2C cleanups to compile on both current linux and kernels >2.6.15
kernel-sync Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/drivers/media/dvb/ttpci/budget.h')
-rw-r--r--linux/drivers/media/dvb/ttpci/budget.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/ttpci/budget.h b/linux/drivers/media/dvb/ttpci/budget.h
index fdaa3318a..bff68210a 100644
--- a/linux/drivers/media/dvb/ttpci/budget.h
+++ b/linux/drivers/media/dvb/ttpci/budget.h
@@ -18,8 +18,13 @@ extern int budget_debug;
#undef dprintk
#endif
+#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,15)
#define dprintk(level,args...) \
do { if ((budget_debug & level)) { printk("%s: %s(): ",__stringify(KBUILD_MODNAME), __FUNCTION__); printk(args); } } while (0)
+#else
+#define dprintk(level,args...) \
+ do { if ((budget_debug & level)) { printk("%s: %s(): ", KBUILD_MODNAME, __FUNCTION__); printk(args); } } while (0)
+#endif
struct budget_info {
char *name;