diff options
author | Antti Palosaari <crope@iki.fi> | 2014-04-12 00:53:51 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-04-23 08:52:41 -0400 |
commit | ae4c8919bb761c7f209fb260a82304a54616da0d (patch) | |
tree | ba7f5d5439ffe40c5788a5a24ec9df0b8f6393ee | |
parent | bffab93c46434c99fcb27eb4e65af90a142f205c (diff) |
[media] si2157: extend frequency range for DVB-C
DVB-C uses lower frequencies than DVB-T. Extend frequency range down to
110 MHz in order to support DVB-C. 110 - 862 MHz range is defined by
NorDig Unified 2.2 specification.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/media/tuners/si2157.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/tuners/si2157.c b/drivers/media/tuners/si2157.c index 953f2e3f1489..56754486de98 100644 --- a/drivers/media/tuners/si2157.c +++ b/drivers/media/tuners/si2157.c | |||
@@ -155,7 +155,7 @@ err: | |||
155 | static const struct dvb_tuner_ops si2157_tuner_ops = { | 155 | static const struct dvb_tuner_ops si2157_tuner_ops = { |
156 | .info = { | 156 | .info = { |
157 | .name = "Silicon Labs Si2157", | 157 | .name = "Silicon Labs Si2157", |
158 | .frequency_min = 174000000, | 158 | .frequency_min = 110000000, |
159 | .frequency_max = 862000000, | 159 | .frequency_max = 862000000, |
160 | }, | 160 | }, |
161 | 161 | ||