diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-05-24 19:48:16 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-05-24 19:48:16 -0400 |
commit | dac1ab58e3566b91aae1d6dc783c470c46275e24 (patch) | |
tree | 87a372be61d73efc3aea9cbe0bdcc3800bda2918 /linux/drivers/media/video/au0828 | |
parent | 0ff099cd55130508959a60a599d4cbcda74543d6 (diff) | |
download | mediapointer-dvb-s2-dac1ab58e3566b91aae1d6dc783c470c46275e24.tar.gz mediapointer-dvb-s2-dac1ab58e3566b91aae1d6dc783c470c46275e24.tar.bz2 |
au0828: remove irrelevent analog tuner standby code
From: Michael Krufky <mkrufky@linuxtv.org>
This code is irrelevant to this driver and should be removed. This was
copied from a hack in cx88-dvb.c, which prevents noise coming from the
analog tuner (via an audio patch cable from the pci card to the sound
hardware) when in digital mode by muting the tda988x. This issue does
not apply to this USB hybrid chip design, where a single piece of
silicon handles both analog and digital demodulation.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/au0828')
-rw-r--r-- | linux/drivers/media/video/au0828/au0828-dvb.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/linux/drivers/media/video/au0828/au0828-dvb.c b/linux/drivers/media/video/au0828/au0828-dvb.c index 8ec55d2a2..709a703fe 100644 --- a/linux/drivers/media/video/au0828/au0828-dvb.c +++ b/linux/drivers/media/video/au0828/au0828-dvb.c @@ -381,12 +381,6 @@ int au0828_dvb_register(struct au0828_dev *dev) return -1; } - /* Put the analog decoder in standby to keep it quiet */ - au0828_call_i2c_clients(dev, TUNER_SET_STANDBY, NULL); - - if (dvb->frontend->ops.analog_ops.standby) - dvb->frontend->ops.analog_ops.standby(dvb->frontend); - /* register everything */ ret = dvb_register(dev); if (ret < 0) { |