diff options
author | Oliver Endriss <o.endriss@gmx.de> | 2007-08-09 05:01:51 +0200 |
---|---|---|
committer | Oliver Endriss <o.endriss@gmx.de> | 2007-08-09 05:01:51 +0200 |
commit | 5f0279a315cce04cff9ef2577f5adfd0ee963927 (patch) | |
tree | 8dfa179dea6bc739073717a55dd82ee7cac06ff4 /linux/drivers/media/dvb/frontends/ves1820.c | |
parent | e003c8a1a4375e0031b0ccccf051deaab4a93aa2 (diff) | |
download | mediapointer-dvb-s2-5f0279a315cce04cff9ef2577f5adfd0ee963927.tar.gz mediapointer-dvb-s2-5f0279a315cce04cff9ef2577f5adfd0ee963927.tar.bz2 |
Fix the min/max frequencies of some DVB-C frontends
From: Hartmut Birr <e9hack@googlemail.com>
The min frequencies of the DVB-C frontends are wrong. In Europe, the center frequency of the lowest
channel is 50.5MHz and not 51MHz. All known cards with the stv0297/tda0002x/ves1820 frontend are
able to tune to this frequency. I've changed the range to the lowest channel - 1/2 bandwidth and the
highest channel + 1/2 bandwidth. For the design of the dvb driver, the frequency ranges must be part
of the tuner and not of the frontend itself. The same frontend may be used for different tuners. The
attached patch does only fix the ranges and not the design.
Signed-off-by: Hartmut Birr <e9hack@googlemail.com>
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/ves1820.c')
-rw-r--r-- | linux/drivers/media/dvb/frontends/ves1820.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/ves1820.c b/linux/drivers/media/dvb/frontends/ves1820.c index 9b57576bf..066b73b75 100644 --- a/linux/drivers/media/dvb/frontends/ves1820.c +++ b/linux/drivers/media/dvb/frontends/ves1820.c @@ -410,8 +410,8 @@ static struct dvb_frontend_ops ves1820_ops = { .name = "VLSI VES1820 DVB-C", .type = FE_QAM, .frequency_stepsize = 62500, - .frequency_min = 51000000, - .frequency_max = 858000000, + .frequency_min = 47000000, + .frequency_max = 862000000, .caps = FE_CAN_QAM_16 | FE_CAN_QAM_32 | FE_CAN_QAM_64 | |