diff options
author | Nickolay V. Shmyrev <devnull@localhost> | 2005-08-17 19:42:11 +0000 |
---|---|---|
committer | Nickolay V. Shmyrev <devnull@localhost> | 2005-08-17 19:42:11 +0000 |
commit | cad4a4110faf2672fc6dec4d5ca6c09ccac2e3e2 (patch) | |
tree | 1603ed1bbfbf74e7dd75c1d8b9a75642dba7d713 /linux/drivers/media/video/cx88/cx88-dvb.c | |
parent | 5e49ebffdf77e2a1052b3c84d175e707749f532a (diff) | |
download | mediapointer-dvb-s2-cad4a4110faf2672fc6dec4d5ca6c09ccac2e3e2.tar.gz mediapointer-dvb-s2-cad4a4110faf2672fc6dec4d5ca6c09ccac2e3e2.tar.bz2 |
* cx88-dvb.c: (lgdt330x_pll_set):
* cx88-video.c: (video_release):
* mt20xx.c: (microtune_init):
* saa7134-video.c: (video_release):
* tda8290.c: (standby), (tda8290_init):
* tda9887.c: (tda9887_set_tvnorm), (tda9887_configure),
(tda9887_command):
* tea5767.c: (set_radio_freq), (tea5767_standby),
(tea5767_tuner_init):
* tuner-core.c: (set_addr), (check_mode), (set_mode),
(tuner_command):
* tuner-simple.c: (default_tuner_init):
* tuner.h:
- New tuner standby API.
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-dvb.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-dvb.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c index c95b3fb7b..31d1a5310 100644 --- a/linux/drivers/media/video/cx88/cx88-dvb.c +++ b/linux/drivers/media/video/cx88/cx88-dvb.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-dvb.c,v 1.59 2005/08/11 17:18:38 mkrufky Exp $ + * $Id: cx88-dvb.c,v 1.60 2005/08/17 19:42:11 nsh Exp $ * * device driver for Conexant 2388x based TV cards * MPEG Transport Stream (DVB) routines @@ -232,11 +232,8 @@ static int lgdt330x_pll_set(struct dvb_frontend* fe, int err; /* Put the analog decoder in standby to keep it quiet */ - /* FIXME: it is using a side effect to mute tuner instead of T_STANDBY */ if (core->tda9887_conf) { - v4l2_std_id std = V4L2_STD_ATSC; - - cx88_call_i2c_clients(core, VIDIOC_S_STD, &std); + cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL); } dvb_pll_configure(core->pll_desc, buf, params->frequency, 0); |