diff options
author | Antti Palosaari <crope@iki.fi> | 2012-03-12 22:21:20 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-03-19 14:47:50 +0100 |
commit | 2b49fad59513b07f976c9711b99f93ae74d081c5 (patch) | |
tree | 325cfd51c9e429f1591e66500cbf869a6e0f7402 /drivers/media/dvb/frontends | |
parent | [media] [trivial] DiB0090: remove redundant '; ' from dib0090_fw_identify() (diff) | |
download | linux-2b49fad59513b07f976c9711b99f93ae74d081c5.tar.xz linux-2b49fad59513b07f976c9711b99f93ae74d081c5.zip |
[media] tda10071: fix the delivery system
Commit b2a29b578d9c21b2e5c88020f830d3c42115c51d sets accidentally
supported delivery systems as DVB-T/T2 whilst it should be
DVB-S/S2. Due to that frontend cannot be used at all.
Reported-by: Jiří Zelenka <klacek@bubakov.net>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Cc: stable@kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends')
-rw-r--r-- | drivers/media/dvb/frontends/tda10071.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/tda10071.c b/drivers/media/dvb/frontends/tda10071.c index a99205026751..c21bc92d2811 100644 --- a/drivers/media/dvb/frontends/tda10071.c +++ b/drivers/media/dvb/frontends/tda10071.c @@ -1215,7 +1215,7 @@ error: EXPORT_SYMBOL(tda10071_attach); static struct dvb_frontend_ops tda10071_ops = { - .delsys = { SYS_DVBT, SYS_DVBT2 }, + .delsys = { SYS_DVBS, SYS_DVBS2 }, .info = { .name = "NXP TDA10071", .frequency_min = 950000, |