Johannes Stezenbach | 2add87a | 2005-05-16 21:54:10 -0700 | [diff] [blame] | 1 | /* |
Uwe Bugla | 1589a99 | 2009-03-29 07:46:58 -0300 | [diff] [blame] | 2 | * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III |
| 3 | * flexcop.h - private header file for all flexcop-chip-source files |
| 4 | * see flexcop.c for copyright information |
Johannes Stezenbach | 2add87a | 2005-05-16 21:54:10 -0700 | [diff] [blame] | 5 | */ |
| 6 | #ifndef __FLEXCOP_H__ |
| 7 | #define __FLEXCOP_H___ |
| 8 | |
| 9 | #define FC_LOG_PREFIX "b2c2-flexcop" |
| 10 | #include "flexcop-common.h" |
| 11 | |
| 12 | extern int b2c2_flexcop_debug; |
| 13 | |
| 14 | /* debug */ |
| 15 | #ifdef CONFIG_DVB_B2C2_FLEXCOP_DEBUG |
| 16 | #define dprintk(level,args...) \ |
| 17 | do { if ((b2c2_flexcop_debug & level)) printk(args); } while (0) |
| 18 | #else |
| 19 | #define dprintk(level,args...) |
| 20 | #endif |
| 21 | |
Uwe Bugla | 1589a99 | 2009-03-29 07:46:58 -0300 | [diff] [blame] | 22 | #define deb_info(args...) dprintk(0x01, args) |
| 23 | #define deb_tuner(args...) dprintk(0x02, args) |
| 24 | #define deb_i2c(args...) dprintk(0x04, args) |
| 25 | #define deb_ts(args...) dprintk(0x08, args) |
| 26 | #define deb_sram(args...) dprintk(0x10, args) |
| 27 | #define deb_rdump(args...) dprintk(0x20, args) |
Johannes Stezenbach | 2add87a | 2005-05-16 21:54:10 -0700 | [diff] [blame] | 28 | |
| 29 | #endif |