Commit 9398ddfe authored by Andrei Koshkosh's avatar Andrei Koshkosh Committed by Mauro Carvalho Chehab

[media] si2157.c: fix frequency range

According with:
	https://www.silabs.com/Support%20Documents/TechnicalDocs/Si2157-short.pdf

The RF input frequency range of this demod is from 42MHz to 870 MHz.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent e60c1e87
......@@ -364,8 +364,8 @@ static int si2157_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
static const struct dvb_tuner_ops si2157_ops = {
.info = {
.name = "Silicon Labs Si2146/2147/2148/2157/2158",
.frequency_min = 55000000,
.frequency_max = 862000000,
.frequency_min = 42000000,
.frequency_max = 870000000,
},
.init = si2157_init,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment