diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2011-01-05 12:40:07 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-01-19 08:28:22 -0500 |
commit | 90d873a7f9389478e68494c530afab8b19c04f29 (patch) | |
tree | d2703fd810f2627b51c54326e926d96825179eaf /drivers/media | |
parent | 9bfaae24f991ff5255de17cd05838d1cd131727c (diff) |
[media] radio-maxiradio.c: use sensible frequency range
Use the standard USA/Europe frequency range of 87-108 MHz instead of the
arbitrary 50-150 MHz.
Copied from the radio-gemtek-pci driver which supports the same hardware.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/radio/radio-maxiradio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-maxiradio.c b/drivers/media/radio/radio-maxiradio.c index 6459a220b0dd..5c2a9058c09f 100644 --- a/drivers/media/radio/radio-maxiradio.c +++ b/drivers/media/radio/radio-maxiradio.c | |||
@@ -77,8 +77,8 @@ MODULE_PARM_DESC(debug, "activates debug info"); | |||
77 | /* TEA5757 pin mappings */ | 77 | /* TEA5757 pin mappings */ |
78 | static const int clk = 1, data = 2, wren = 4, mo_st = 8, power = 16; | 78 | static const int clk = 1, data = 2, wren = 4, mo_st = 8, power = 16; |
79 | 79 | ||
80 | #define FREQ_LO (50 * 16000) | 80 | #define FREQ_LO (87 * 16000) |
81 | #define FREQ_HI (150 * 16000) | 81 | #define FREQ_HI (108 * 16000) |
82 | 82 | ||
83 | #define FREQ_IF 171200 /* 10.7*16000 */ | 83 | #define FREQ_IF 171200 /* 10.7*16000 */ |
84 | #define FREQ_STEP 200 /* 12.5*16 */ | 84 | #define FREQ_STEP 200 /* 12.5*16 */ |