Messages in this thread Patch in this message |  | | | Date | Thu, 21 Jul 2005 00:23:20 -0400 | | From | Michael Krufky <> | | Subject | [2.6.13 PATCH 4/4] 04-cx88-dvb-cleanup.patch |
| |
Michael Krufky wrote:
> This patch series spans both video4linux and linux-dvb trees. > Remove the dvb_pll_desc from the lgdt3302 frontend and replace with a > pll_set-callback to isolate the tuner programming from the frontend. > > Select the RF input connector based upon the type of demodulation > selected. ANT RF connector is selected for 8-VSB and CABLE RF > connector is selected for QAM64/QAM256. Implement this along the lines > posted to linux-dvb list (subscribers only) by Patrick Boettcher. ( > http://linuxtv.org/pipermail/linux-dvb/2005-July/003557.html ) This > only affects the cards that use the Microtune 4042 tuner. This is not > ideal, but there is no current specification for selecting RF inputs. > It makes the card work the same way as the Windows driver thus it may > reduce user confusion. >
Remove unneeded comment.
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
cx88-dvb.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -u linux-2.6.13/drivers/media/video/cx88/cx88-dvb.c linux/drivers/media/video/cx88/cx88-dvb.c --- linux-2.6.13/drivers/media/video/cx88/cx88-dvb.c 2005-07-20 22:53:42.000000000 +0000 +++ linux/drivers/media/video/cx88/cx88-dvb.c 2005-07-20 23:01:58.000000000 +0000 @@ -1,5 +1,5 @@ /* - * $Id: cx88-dvb.c,v 1.48 2005/07/20 05:33:33 mkrufky Exp $ + * $Id: cx88-dvb.c,v 1.49 2005/07/20 05:38:09 mkrufky Exp $ * * device driver for Conexant 2388x based TV cards * MPEG Transport Stream (DVB) routines @@ -328,7 +328,7 @@ cx_clear(MO_GP0_IO, 1); mdelay(100); - cx_set(MO_GP0_IO, 9); /* ANT connector too FIXME */ + cx_set(MO_GP0_IO, 9); mdelay(200); dev->core->pll_addr = 0x61; dev->core->pll_desc = &dvb_pll_thomson_dtt7611; |  |