#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include "dvb_frontend.h"
#include "dib3000mc.h"
Go to the source code of this file.
|
| module_param (debug, int, 0644) |
|
| MODULE_PARM_DESC (debug,"turn on debugging (default: 0)") |
|
| module_param (buggy_sfn_workaround, int, 0644) |
|
| MODULE_PARM_DESC (buggy_sfn_workaround,"Enable work-around for buggy SFNs (default: 0)") |
|
struct i2c_adapter * | dib3000mc_get_tuner_i2c_master (struct dvb_frontend *demod, int gating) |
|
| EXPORT_SYMBOL (dib3000mc_get_tuner_i2c_master) |
|
int | dib3000mc_pid_control (struct dvb_frontend *fe, int index, int pid, int onoff) |
|
| EXPORT_SYMBOL (dib3000mc_pid_control) |
|
int | dib3000mc_pid_parse (struct dvb_frontend *fe, int onoff) |
|
| EXPORT_SYMBOL (dib3000mc_pid_parse) |
|
void | dib3000mc_set_config (struct dvb_frontend *fe, struct dib3000mc_config *cfg) |
|
| EXPORT_SYMBOL (dib3000mc_set_config) |
|
int | dib3000mc_i2c_enumeration (struct i2c_adapter *i2c, int no_of_demods, u8 default_addr, struct dib3000mc_config cfg[]) |
|
| EXPORT_SYMBOL (dib3000mc_i2c_enumeration) |
|
struct dvb_frontend * | dib3000mc_attach (struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib3000mc_config *cfg) |
|
| EXPORT_SYMBOL (dib3000mc_attach) |
|
| MODULE_AUTHOR ("Patrick Boettcher <[email protected]>") |
|
| MODULE_DESCRIPTION ("Driver for the DiBcom 3000MC/P COFDM demodulator") |
|
| MODULE_LICENSE ("GPL") |
|
MODULE_DESCRIPTION |
( |
"Driver for the DiBcom 3000MC/P COFDM demodulator" |
| ) |
|
module_param |
( |
buggy_sfn_workaround |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"turn on debugging (default: 0)" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
buggy_sfn_workaround |
, |
|
|
"Enable work-around for buggy SFNs (default: 0)" |
|
|
) |
| |