diff options
Diffstat (limited to 'linux/drivers/media/dvb/frontends/or51211.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/or51211.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/frontends/or51211.h b/linux/drivers/media/dvb/frontends/or51211.h index 330db1eb9..13a5a3afb 100644 --- a/linux/drivers/media/dvb/frontends/or51211.h +++ b/linux/drivers/media/dvb/frontends/or51211.h @@ -24,7 +24,6 @@ #include <linux/dvb/frontend.h> #include <linux/firmware.h> -#include "bt878.h" struct or51211_config { @@ -33,11 +32,13 @@ struct or51211_config /* Request firmware for device */ int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); + void (*setmode)(struct dvb_frontend * fe, int mode); + void (*reset)(struct dvb_frontend * fe); + void (*sleep)(struct dvb_frontend * fe); }; extern struct dvb_frontend* or51211_attach(const struct or51211_config* config, - struct i2c_adapter* i2c, - struct bt878 *bt); + struct i2c_adapter* i2c); #endif // OR51211_H |