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