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/dvb/frontends/s5h1409.h | |
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/dvb/frontends/s5h1409.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/s5h1409.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/s5h1409.h b/linux/drivers/media/dvb/frontends/s5h1409.h index 20f9af1af..b1f433906 100644 --- a/linux/drivers/media/dvb/frontends/s5h1409.h +++ b/linux/drivers/media/dvb/frontends/s5h1409.h @@ -39,8 +39,8 @@ struct s5h1409_config #define S5H1409_GPIO_ON 1 u8 gpio; - /* IF Freq in KHz */ - u16 if_freq; + /* IF Freq for QAM in KHz, VSB is hardcoded to 5380 */ + u16 qam_if; /* Spectral Inversion */ #define S5H1409_INVERSION_OFF 0 |