summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx88/cx88-video.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <devnull@localhost>2005-07-02 15:24:11 +0000
committerNickolay V. Shmyrev <devnull@localhost>2005-07-02 15:24:11 +0000
commita3a954f470bc6f2ce8de3296cae025627f5b0c6a (patch)
tree058624cf74c66ede5d28f5bf4f865d3746ac891d /linux/drivers/media/video/cx88/cx88-video.c
parentec7f541e384c249c0f5a2c415b95c900bb272c44 (diff)
downloadmediapointer-dvb-s2-a3a954f470bc6f2ce8de3296cae025627f5b0c6a.tar.gz
mediapointer-dvb-s2-a3a954f470bc6f2ce8de3296cae025627f5b0c6a.tar.bz2
* bttv-cards.c, bttv-i2c.c, cx88-i2c.c, cx88-video.c:
* saa7134-cards.c, saa7134-core.c, saa7134-i2c.c: * tuner-core.c, tuner.h: Rename v4l2_tuner field in tun_addr structure. Cleanup tuner private calls.
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-video.c')
-rw-r--r--linux/drivers/media/video/cx88/cx88-video.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-video.c b/linux/drivers/media/video/cx88/cx88-video.c
index 7d14c996f..38609f609 100644
--- a/linux/drivers/media/video/cx88/cx88-video.c
+++ b/linux/drivers/media/video/cx88/cx88-video.c
@@ -1,5 +1,5 @@
/*
- * $Id: cx88-video.c,v 1.72 2005/06/29 16:28:17 mchehab Exp $
+ * $Id: cx88-video.c,v 1.73 2005/07/02 15:24:11 nsh Exp $
*
* device driver for Conexant 2388x based TV cards
* video4linux video interface
@@ -2095,16 +2095,17 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
if (core->tda9887_conf)
request_module("tda9887");
if (core->radio_type != UNSET) {
- tun_addr.v4l2_tuner = T_RADIO;
+ tun_addr.state = T_RADIO;
tun_addr.type = core->radio_type;
tun_addr.addr = core->radio_addr;
cx88_call_i2c_clients(dev->core,TUNER_SET_TYPE_ADDR, &tun_addr);
}
if (core->tuner_type != UNSET) {
- tun_addr.v4l2_tuner = T_ANALOG_TV;
+ tun_addr.state = T_ANALOG_TV;
tun_addr.type = core->tuner_type;
tun_addr.addr = core->tuner_addr;
+
cx88_call_i2c_clients(dev->core,TUNER_SET_TYPE_ADDR, &tun_addr);
}