mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
V4L/DVB (5980): tda8083: fix frequency and symbolrate info
The TDA8083 supports a symbol rate from 12..30 MSym/s. The Grundig 29504-451 tuner uses the TDA8060 down-converter, which has a frequency range from 920..2200MHz. Thanks-to: Lars Buerding <lindvb@metatux.net> Signed-off-by: Oliver Endriss <o.endriss@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
5e082f1521
commit
4f76b672c4
@ -443,12 +443,12 @@ static struct dvb_frontend_ops tda8083_ops = {
|
||||
.info = {
|
||||
.name = "Philips TDA8083 DVB-S",
|
||||
.type = FE_QPSK,
|
||||
.frequency_min = 950000, /* FIXME: guessed! */
|
||||
.frequency_max = 1400000, /* FIXME: guessed! */
|
||||
.frequency_min = 920000, /* TDA8060 */
|
||||
.frequency_max = 2200000, /* TDA8060 */
|
||||
.frequency_stepsize = 125, /* kHz for QPSK frontends */
|
||||
/* .frequency_tolerance = ???,*/
|
||||
.symbol_rate_min = 1000000, /* FIXME: guessed! */
|
||||
.symbol_rate_max = 45000000, /* FIXME: guessed! */
|
||||
.symbol_rate_min = 12000000,
|
||||
.symbol_rate_max = 30000000,
|
||||
/* .symbol_rate_tolerance = ???,*/
|
||||
.caps = FE_CAN_INVERSION_AUTO |
|
||||
FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
|
||||
|
Loading…
Reference in New Issue
Block a user