summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx88/cx88-dvb.c
diff options
context:
space:
mode:
authorMichael Krufky <devnull@localhost>2005-09-07 01:03:03 +0000
committerMichael Krufky <devnull@localhost>2005-09-07 01:03:03 +0000
commitd4b7ebe4462856de6d7f987d9a7871c632581b3f (patch)
tree3c48d7168353dab9d2a5893f164276f5443ec4e9 /linux/drivers/media/video/cx88/cx88-dvb.c
parent768cb6349a686c88f52cf35432062ac3c82445d2 (diff)
downloadmediapointer-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/cx88/cx88-dvb.c')
-rw-r--r--linux/drivers/media/video/cx88/cx88-dvb.c5
1 files changed, 4 insertions, 1 deletions
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);
}