use higher bandwidth if symbol rate selected > 5500000

This commit is contained in:
none 2019-12-11 09:08:25 +01:00
parent 569674e427
commit 1b9d2782ba
1 changed files with 2 additions and 0 deletions

View File

@ -210,6 +210,8 @@ static int search_j83b(struct dvb_frontend *fe)
cmd.j83b_search.flags = 0;
cmd.j83b_search.retry = 0;
cmd.j83b_search.bandwidth = MCI_BANDWIDTH_6MHZ;
if (p->symbol_rate > 5500000)
cmd.j83b_search.bandwidth |= MCI_BANDWIDTH_EXTENSION;
cmd.j83b_search.frequency = p->frequency;
cmd.demod = state->mci.tuner;
cmd.output = state->mci.nr;