summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--linux/drivers/media/video/cx88/cx88-core.c3
-rw-r--r--linux/drivers/media/video/cx88/cx88-dvb.c5
-rw-r--r--v4l/ChangeLog10
3 files changed, 16 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);
}
diff --git a/v4l/ChangeLog b/v4l/ChangeLog
index cfe9501e0..6e0f3a8a0 100644
--- a/v4l/ChangeLog
+++ b/v4l/ChangeLog
@@ -1,3 +1,13 @@
+2005-09-06 20:57 mkrufky
+
+ * 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>
+
2005-09-07 00:02 mkrufky
* cx88-dvb.c: (dvb_buf_prepare):