diff options
| author | Antti Palosaari <crope@iki.fi> | 2015-03-17 00:56:21 +0300 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-04-03 03:54:04 +0300 |
| commit | 8459e41da53b48e9b5f92312f27e07a67ea6b27a (patch) | |
| tree | 342cc204e51b3b61b93e4eef37ebb7ede77501f3 | |
| parent | 4752eb273133778816e7affe6c8381712f363c50 (diff) | |
| download | linux-8459e41da53b48e9b5f92312f27e07a67ea6b27a.tar.xz | |
[media] mn88473: define symbol rate limits
w_scan complains about missing symbol rate limits:
This dvb driver is *buggy*: the symbol rate limits are undefined - please report to linuxtv.org
Lets add some reasonable limits in order to keep w_scan happy :)
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
| -rw-r--r-- | drivers/staging/media/mn88473/mn88473.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/media/mn88473/mn88473.c b/drivers/staging/media/mn88473/mn88473.c index a23e59e1537e..f98b982398bc 100644 --- a/drivers/staging/media/mn88473/mn88473.c +++ b/drivers/staging/media/mn88473/mn88473.c @@ -296,6 +296,8 @@ static struct dvb_frontend_ops mn88473_ops = { .delsys = {SYS_DVBT, SYS_DVBT2, SYS_DVBC_ANNEX_AC}, .info = { .name = "Panasonic MN88473", + .symbol_rate_min = 1000000, + .symbol_rate_max = 7200000, .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 | |
