Skip to content

Commit

Permalink
Always return correct frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
deeptho committed Feb 3, 2021
1 parent 00e9c78 commit 5b47aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb-frontends/stid135/stid135-fe.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ static int stid135_get_frontend(struct dvb_frontend *fe, struct dtv_frontend_pro
}


if(state->demod_search_algo == FE_SAT_BLIND_SEARCH ||
if(true || state->demod_search_algo == FE_SAT_BLIND_SEARCH ||
state->demod_search_algo == FE_SAT_NEXT) {
int max_isi_len= sizeof(p->isi)/sizeof(p->isi[0]);
if(max_isi_len > sizeof(state->signal_info.isi_list.isi)/sizeof(state->signal_info.isi_list.isi[0]))
Expand Down

0 comments on commit 5b47aaa

Please sign in to comment.