diff options
author | Michael Krufky <devnull@localhost> | 2005-09-07 01:03:03 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2005-09-07 01:03:03 +0000 |
commit | d4b7ebe4462856de6d7f987d9a7871c632581b3f (patch) | |
tree | 3c48d7168353dab9d2a5893f164276f5443ec4e9 /linux/drivers/media/video | |
parent | 768cb6349a686c88f52cf35432062ac3c82445d2 (diff) | |
download | mediapointer-dvb-s2-d4b7ebe4462856de6d7f987d9a7871c632581b3f.tar.gz mediapointer-dvb-s2-d4b7ebe4462856de6d7f987d9a7871c632581b3f.tar.bz2 |
* cx88-core.c: (cx88_core_get):
* cx88-dvb.c: (dvb_register):
- Implemented TUNER_SET_STANDBY on cx88 init.
Additional call is necessary in cx88-dvb, to prevent
noise on initialization of FusionHDTV5 Gold.
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-core.c | 3 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-dvb.c | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-core.c b/linux/drivers/media/video/cx88/cx88-core.c index 0f17154e6..d2102d5d6 100644 --- a/linux/drivers/media/video/cx88/cx88-core.c +++ b/linux/drivers/media/video/cx88/cx88-core.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-core.c,v 1.39 2005/08/30 18:13:51 mchehab Exp $ + * $Id: cx88-core.c,v 1.40 2005/09/07 01:03:03 mkrufky Exp $ * * device driver for Conexant 2388x based TV cards * driver core @@ -1183,6 +1183,7 @@ struct cx88_core* cx88_core_get(struct pci_dev *pci) /* init hardware */ cx88_reset(core); cx88_i2c_init(core,pci); + cx88_call_i2c_clients (core, TUNER_SET_STANDBY, NULL); cx88_card_setup(core); cx88_ir_init(core,pci); diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c index e786ce51f..a24007027 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.64 2005/09/07 00:08:09 mkrufky Exp $ + * $Id: cx88-dvb.c,v 1.65 2005/09/07 01:03:03 mkrufky Exp $ * * device driver for Conexant 2388x based TV cards * MPEG Transport Stream (DVB) routines @@ -411,6 +411,9 @@ static int dvb_register(struct cx8802_dev *dev) dev->dvb.frontend->ops->info.frequency_max = dev->core->pll_desc->max; } + /* Put the analog decoder in standby to keep it quiet */ + cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL); + /* register everything */ return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev); } |