aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/dvb/frontends/xc5000.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/dvb/frontends/xc5000.h')
-rw-r--r--drivers/media/dvb/frontends/xc5000.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/media/dvb/frontends/xc5000.h b/drivers/media/dvb/frontends/xc5000.h
index 941b3194813..85b2d438fa4 100644
--- a/drivers/media/dvb/frontends/xc5000.h
+++ b/drivers/media/dvb/frontends/xc5000.h
@@ -28,13 +28,15 @@ struct dvb_frontend;
struct i2c_adapter;
struct xc5000_config {
- u8 i2c_address;
- u32 if_khz;
- int (*request_firmware)(struct dvb_frontend *fe,
- const struct firmware **fw, char *name);
- int (*tuner_reset)(struct dvb_frontend* fe);
+ u8 i2c_address;
+ u32 if_khz;
+ void *video_dev;
+ int (*tuner_callback) (void *dev, int command, int arg);
};
+/* xc5000 callback command */
+#define XC5000_TUNER_RESET 0
+
#if defined(CONFIG_DVB_TUNER_XC5000) || defined(CONFIG_DVB_TUNER_XC5000_MODULE)
extern struct dvb_frontend* xc5000_attach(struct dvb_frontend *fe,
struct i2c_adapter *i2c,