Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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,