#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/mutex.h>
#include "dvb_frontend.h"
#include "dib7000m.h"
Go to the source code of this file.
|
| module_param (debug, int, 0644) |
|
| MODULE_PARM_DESC (debug,"turn on debugging (default: 0)") |
|
struct i2c_adapter * | dib7000m_get_i2c_master (struct dvb_frontend *demod, enum dibx000_i2c_interface intf, int gating) |
|
| EXPORT_SYMBOL (dib7000m_get_i2c_master) |
|
int | dib7000m_pid_filter_ctrl (struct dvb_frontend *fe, u8 onoff) |
|
| EXPORT_SYMBOL (dib7000m_pid_filter_ctrl) |
|
int | dib7000m_pid_filter (struct dvb_frontend *fe, u8 id, u16 pid, u8 onoff) |
|
| EXPORT_SYMBOL (dib7000m_pid_filter) |
|
struct dvb_frontend * | dib7000m_attach (struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib7000m_config *cfg) |
|
| EXPORT_SYMBOL (dib7000m_attach) |
|
| MODULE_AUTHOR ("Patrick Boettcher <[email protected]>") |
|
| MODULE_DESCRIPTION ("Driver for the DiBcom 7000MA/MB/PA/PB/MC COFDM demodulator") |
|
| MODULE_LICENSE ("GPL") |
|
- Enumerator:
DIB7000M_POWER_ALL |
|
DIB7000M_POWER_NO |
|
DIB7000M_POWER_INTERF_ANALOG_AGC |
|
DIB7000M_POWER_COR4_DINTLV_ICIRM_EQUAL_CFROD |
|
DIB7000M_POWER_COR4_CRY_ESRAM_MOUT_NUD |
|
DIB7000M_POWER_INTERFACE_ONLY |
|
Definition at line 62 of file dib7000m.c.
MODULE_DESCRIPTION |
( |
"Driver for the DiBcom 7000MA/MB/PA/PB/MC COFDM demodulator" |
| ) |
|
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"turn on debugging (default: 0)" |
|
|
) |
| |