diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-12-13 08:04:10 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2007-12-13 08:04:10 -0500 |
commit | 32127f7d5133a71be9aadd4f6c8275ff3fd4a7e9 (patch) | |
tree | 804b82a21bfe9fb442ea4132f9b443bff790bc79 /linux/drivers/media/video/cx23885 | |
parent | 359077037af7b20f69cde8ff021e4f5f89e4922f (diff) | |
download | mediapointer-dvb-s2-32127f7d5133a71be9aadd4f6c8275ff3fd4a7e9.tar.gz mediapointer-dvb-s2-32127f7d5133a71be9aadd4f6c8275ff3fd4a7e9.tar.bz2 |
s5h1409: fix IF frequency configuration
From: Michael Krufky <mkrufky@linuxtv.org>
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>
Diffstat (limited to 'linux/drivers/media/video/cx23885')
-rw-r--r-- | linux/drivers/media/video/cx23885/cx23885-dvb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-dvb.c b/linux/drivers/media/video/cx23885/cx23885-dvb.c index c21d21511..36e5dd22a 100644 --- a/linux/drivers/media/video/cx23885/cx23885-dvb.c +++ b/linux/drivers/media/video/cx23885/cx23885-dvb.c @@ -86,7 +86,7 @@ static struct s5h1409_config hauppauge_generic_config = { .demod_address = 0x32 >> 1, .output_mode = S5H1409_SERIAL_OUTPUT, .gpio = S5H1409_GPIO_ON, - .if_freq = 44000, + .qam_if = 44000, .inversion = S5H1409_INVERSION_OFF, .status_mode = S5H1409_DEMODLOCKING }; @@ -95,7 +95,7 @@ static struct s5h1409_config hauppauge_hvr1800lp_config = { .demod_address = 0x32 >> 1, .output_mode = S5H1409_SERIAL_OUTPUT, .gpio = S5H1409_GPIO_OFF, - .if_freq = 44000, + .qam_if = 44000, .inversion = S5H1409_INVERSION_OFF, .status_mode = S5H1409_DEMODLOCKING }; |