Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1656153
| From | Ben Hutchings <ben.hutchings@codethink.co.uk> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 4.4 075/103] [media] dvb-frontends/cxd2841er: define symbol_rate_min/max in T/C fe-ops |
| Date | 2017-06-02 13:40 +0200 |
| Message-ID | <tNT5U-rX-25@gated-at.bofh.it> (permalink) |
| References | <tKoKZ-8pv-3@gated-at.bofh.it> <tKoUI-8uq-71@gated-at.bofh.it> |
| Organization | Codethink Ltd. |
On Tue, 2017-05-23 at 22:09 +0200, Greg Kroah-Hartman wrote: > 4.4-stable review patch. If anyone has any objections, please let me know. > > ------------------ > > From: Daniel Scheller <d.scheller@gmx.net> > > 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> In 4.4 this driver had two separate ops structures for DVB-T and DVB-C, and this is only updating the DVB-C ops. I think this needs a second patch to cover DVB-T. Ben. > --- > drivers/media/dvb-frontends/cxd2841er.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > --- a/drivers/media/dvb-frontends/cxd2841er.c > +++ b/drivers/media/dvb-frontends/cxd2841er.c > @@ -2678,7 +2678,9 @@ static struct dvb_frontend_ops cxd2841e > 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, > > > -- Ben Hutchings Software Developer, Codethink Ltd.
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
Re: [PATCH 4.4 075/103] [media] dvb-frontends/cxd2841er: define symbol_rate_min/max in T/C fe-ops Ben Hutchings <ben.hutchings@codethink.co.uk> - 2017-06-02 13:40 +0200
csiph-web