diff options
author | Daniel Scheller <d.scheller@gmx.net> | 2017-03-19 12:26:39 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-25 14:30:14 +0200 |
commit | f7c778fa707d9ba6a01788bdd58728f5749d6fde (patch) | |
tree | 77fa5b9862ba31561f0692fe78690bfa945bdd74 | |
parent | e5a9ebb4387aad53a3a81aa634734e3edcca8784 (diff) | |
download | talos-op-linux-f7c778fa707d9ba6a01788bdd58728f5749d6fde.tar.gz talos-op-linux-f7c778fa707d9ba6a01788bdd58728f5749d6fde.zip |
dvb-frontends/cxd2841er: define symbol_rate_min/max in T/C fe-ops
commit 158f0328af86a99d64073851967a02694bff987d upstream.
Fixes "w_scan -f c" complaining with
This dvb driver is *buggy*: the symbol rate limits are undefined - please
report to linuxtv.org)
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
Acked-by: Abylay Ospan <aospan@netup.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/media/dvb-frontends/cxd2841er.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/cxd2841er.c b/drivers/media/dvb-frontends/cxd2841er.c index fdffb2f0ded8..107853b0fddd 100644 --- a/drivers/media/dvb-frontends/cxd2841er.c +++ b/drivers/media/dvb-frontends/cxd2841er.c @@ -2678,7 +2678,9 @@ static struct dvb_frontend_ops cxd2841er_dvbt_t2_ops = { FE_CAN_MUTE_TS | FE_CAN_2G_MODULATION, .frequency_min = 42000000, - .frequency_max = 1002000000 + .frequency_max = 1002000000, + .symbol_rate_min = 870000, + .symbol_rate_max = 11700000 }, .init = cxd2841er_init_tc, .sleep = cxd2841er_sleep_tc, |