diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-12-13 08:04:10 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:03:44 -0500 |
commit | 2b03238a79295aff30afc3d9a82afa617fd33971 (patch) | |
tree | b0fbd55c5a2a9c7543d4dde925ef8be8233e4d82 /drivers/media/video/cx23885 | |
parent | 18ff605a18b29ab1b52d31f96e2ecbaf7a042a3e (diff) |
V4L/DVB (6821): s5h1409: fix IF frequency configuration
On the s5h1409 demod, the IF frequency for VSB is limited to 44 / 5.38 MHz.
Hardcode VSB IF frequency within the driver to 44 / 5.38 MHz.
QAM IF frequency remains configurable via attach-time configuration.
Acked-by: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx23885')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-dvb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx23885/cx23885-dvb.c b/drivers/media/video/cx23885/cx23885-dvb.c index eda8c05d0931..96d732098a0d 100644 --- a/drivers/media/video/cx23885/cx23885-dvb.c +++ b/drivers/media/video/cx23885/cx23885-dvb.c | |||
@@ -85,7 +85,7 @@ static struct s5h1409_config hauppauge_generic_config = { | |||
85 | .demod_address = 0x32 >> 1, | 85 | .demod_address = 0x32 >> 1, |
86 | .output_mode = S5H1409_SERIAL_OUTPUT, | 86 | .output_mode = S5H1409_SERIAL_OUTPUT, |
87 | .gpio = S5H1409_GPIO_ON, | 87 | .gpio = S5H1409_GPIO_ON, |
88 | .if_freq = 44000, | 88 | .qam_if = 44000, |
89 | .inversion = S5H1409_INVERSION_OFF, | 89 | .inversion = S5H1409_INVERSION_OFF, |
90 | .status_mode = S5H1409_DEMODLOCKING | 90 | .status_mode = S5H1409_DEMODLOCKING |
91 | }; | 91 | }; |
@@ -94,7 +94,7 @@ static struct s5h1409_config hauppauge_hvr1800lp_config = { | |||
94 | .demod_address = 0x32 >> 1, | 94 | .demod_address = 0x32 >> 1, |
95 | .output_mode = S5H1409_SERIAL_OUTPUT, | 95 | .output_mode = S5H1409_SERIAL_OUTPUT, |
96 | .gpio = S5H1409_GPIO_OFF, | 96 | .gpio = S5H1409_GPIO_OFF, |
97 | .if_freq = 44000, | 97 | .qam_if = 44000, |
98 | .inversion = S5H1409_INVERSION_OFF, | 98 | .inversion = S5H1409_INVERSION_OFF, |
99 | .status_mode = S5H1409_DEMODLOCKING | 99 | .status_mode = S5H1409_DEMODLOCKING |
100 | }; | 100 | }; |