summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tuner-driver.h
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2007-12-17 02:02:26 +0100
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 22:03:56 +0100
commitf7f427e4cc6078e23078dcd7f321676e0b0f544c (patch)
tree61c68f36d39527be687d83d5e945e56465c1eec6 /drivers/media/video/tuner-driver.h
parentV4L/DVB (6843): tda9887: use printk macros from tuner-i2c.h (diff)
downloadlinux-f7f427e4cc6078e23078dcd7f321676e0b0f544c.tar.xz
linux-f7f427e4cc6078e23078dcd7f321676e0b0f544c.zip
V4L/DVB (6844): tuner: remove struct tuner from tuner-driver.h
struct tuner holds state for tuner-core, only -- move it into tuner-core.c Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tuner-driver.h')
-rw-r--r--drivers/media/video/tuner-driver.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/drivers/media/video/tuner-driver.h b/drivers/media/video/tuner-driver.h
index 417753b7c3fa..7b1adfaf7aca 100644
--- a/drivers/media/video/tuner-driver.h
+++ b/drivers/media/video/tuner-driver.h
@@ -50,27 +50,4 @@ struct analog_tuner_ops {
int (*set_config)(struct dvb_frontend *fe, void *priv_cfg);
};
-struct tuner {
- /* device */
- struct i2c_client *i2c;
- struct list_head list; /* list of tuners */
-
- unsigned int type; /* chip type */
-
- unsigned int mode;
- unsigned int mode_mask; /* Combination of allowable modes */
-
- unsigned int tv_freq; /* keep track of the current settings */
- unsigned int radio_freq;
- unsigned int audmode;
- v4l2_std_id std;
-
- int using_v4l2;
-
- struct dvb_frontend fe;
-
- unsigned int config;
- int (*tuner_callback) (void *dev, int command,int arg);
-};
-
#endif /* __TUNER_DRIVER_H__ */