flexcop.c (0337966d121ebebf73a1c346123e8112796e684e) flexcop.c (25d4affb0c62444354b080c5d8444a8a4b89cd96)
1/*
2 * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
3 * flexcop.c - main module part
4 * Copyright (C) 2004-9 Patrick Boettcher <patrick.boettcher@posteo.de>
5 * based on skystar2-driver Copyright (C) 2003 Vadim Catana, skystar@moldova.cc
6 *
7 * Acknowledgements:
8 * John Jurrius from BBTI, Inc. for extensive support

--- 28 unchanged lines hidden (view full) ---

37#else
38#define DEBSTATUS " (debugging is not enabled)"
39#endif
40
41int b2c2_flexcop_debug;
42EXPORT_SYMBOL_GPL(b2c2_flexcop_debug);
43module_param_named(debug, b2c2_flexcop_debug, int, 0644);
44MODULE_PARM_DESC(debug,
1/*
2 * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
3 * flexcop.c - main module part
4 * Copyright (C) 2004-9 Patrick Boettcher <patrick.boettcher@posteo.de>
5 * based on skystar2-driver Copyright (C) 2003 Vadim Catana, skystar@moldova.cc
6 *
7 * Acknowledgements:
8 * John Jurrius from BBTI, Inc. for extensive support

--- 28 unchanged lines hidden (view full) ---

37#else
38#define DEBSTATUS " (debugging is not enabled)"
39#endif
40
41int b2c2_flexcop_debug;
42EXPORT_SYMBOL_GPL(b2c2_flexcop_debug);
43module_param_named(debug, b2c2_flexcop_debug, int, 0644);
44MODULE_PARM_DESC(debug,
45 "set debug level (1=info,2=tuner,4=i2c,8=ts,16=sram,32=reg (|-able))."
45 "set debug level (1=info,2=tuner,4=i2c,8=ts,16=sram,32=reg,64=i2cdump (|-able))."
46 DEBSTATUS);
47#undef DEBSTATUS
48
49DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
50
51/* global zero for ibi values */
52flexcop_ibi_value ibi_zero;
53

--- 267 unchanged lines hidden ---
46 DEBSTATUS);
47#undef DEBSTATUS
48
49DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
50
51/* global zero for ibi values */
52flexcop_ibi_value ibi_zero;
53

--- 267 unchanged lines hidden ---