flexcop.h 845 B

12345678910111213141516171819202122232425262728293031
  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. #define FC_LOG_PREFIX "b2c2-flexcop"
  11. #include "flexcop-common.h"
  12. extern int b2c2_flexcop_debug;
  13. /* debug */
  14. #ifdef CONFIG_DVB_B2C2_FLEXCOP_DEBUG
  15. #define dprintk(level,args...) \
  16. do { if ((b2c2_flexcop_debug & level)) printk(args); } while (0)
  17. #else
  18. #define dprintk(level,args...)
  19. #endif
  20. #define deb_info(args...) dprintk(0x01,args)
  21. #define deb_tuner(args...) dprintk(0x02,args)
  22. #define deb_i2c(args...) dprintk(0x04,args)
  23. #define deb_ts(args...) dprintk(0x08,args)
  24. #define deb_sram(args...) dprintk(0x10,args)
  25. #define deb_rdump(args...) dprintk(0x20,args)
  26. #endif