#include <linux/i2c.h>
#include <linux/slab.h>
#include <linux/delay.h>
#include <linux/videodev2.h>
#include "tuner-i2c.h"
#include "tda8290.h"
#include "tda827x.h"
#include "tda18271.h"
Go to the source code of this file.
|
| | module_param (debug, int, 0644) |
| |
| | MODULE_PARM_DESC (debug,"enable verbose debug messages") |
| |
| | module_param (deemphasis_50, int, 0644) |
| |
| | MODULE_PARM_DESC (deemphasis_50,"0 - 75us deemphasis; 1 - 50us deemphasis") |
| |
| struct dvb_frontend * | tda829x_attach (struct dvb_frontend *fe, struct i2c_adapter *i2c_adap, u8 i2c_addr, struct tda829x_config *cfg) |
| |
| | EXPORT_SYMBOL_GPL (tda829x_attach) |
| |
| int | tda829x_probe (struct i2c_adapter *i2c_adap, u8 i2c_addr) |
| |
| | EXPORT_SYMBOL_GPL (tda829x_probe) |
| |
| | MODULE_DESCRIPTION ("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver") |
| |
| | MODULE_AUTHOR ("Gerd Knorr, Hartmut Hackmann, Michael Krufky") |
| |
| | MODULE_LICENSE ("GPL") |
| |
| #define PROBE_BUFFER_SIZE 8 |
| #define TDA8295C2_ID 0x8b |
| MODULE_AUTHOR |
( |
"Gerd |
Knorr, |
|
|
Hartmut |
Hackmann, |
|
|
Michael Krufky" |
|
|
) |
| |
| module_param |
( |
deemphasis_50 |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
| MODULE_PARM_DESC |
( |
deemphasis_50 |
, |
|
|
"0 - 75us deemphasis; 1 - 50us deemphasis" |
|
|
) |
| |