diff options
author | Daniel Scheller <d.scheller@gmx.net> | 2017-03-19 11:26:39 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-25 09:44:42 -0400 |
commit | 28590f1bb601862c663c1e95158ffcc452593ff9 (patch) | |
tree | 97f09f41b6bc1163bda85a3d037687e159912a97 /drivers | |
parent | 64579fcc57fd00e1e9f021eba90d01d3371dc6b7 (diff) |
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>
Diffstat (limited to 'drivers')
-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 5afb9c508f65..fd0f25ee251f 100644 --- a/drivers/media/dvb-frontends/cxd2841er.c +++ b/drivers/media/dvb-frontends/cxd2841er.c | |||
@@ -3852,7 +3852,9 @@ static struct dvb_frontend_ops cxd2841er_t_c_ops = { | |||
3852 | FE_CAN_MUTE_TS | | 3852 | FE_CAN_MUTE_TS | |
3853 | FE_CAN_2G_MODULATION, | 3853 | FE_CAN_2G_MODULATION, |
3854 | .frequency_min = 42000000, | 3854 | .frequency_min = 42000000, |
3855 | .frequency_max = 1002000000 | 3855 | .frequency_max = 1002000000, |
3856 | .symbol_rate_min = 870000, | ||
3857 | .symbol_rate_max = 11700000 | ||
3856 | }, | 3858 | }, |
3857 | .init = cxd2841er_init_tc, | 3859 | .init = cxd2841er_init_tc, |
3858 | .sleep = cxd2841er_sleep_tc, | 3860 | .sleep = cxd2841er_sleep_tc, |