Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 174079
b: refs/heads/master
c: c879d8c
h: refs/heads/master
i:
  174077: f5af2ae
  174075: 92db371
  174071: 55ccba5
  174063: c693cca
  174047: da4c662
  174015: 510fe0a
  173951: 008969c
  173823: 1b9ddb2
  173567: aa34775
  173055: eb9301b
  172031: 34ad129
v: v3
  • Loading branch information
Andreas Regel authored and Mauro Carvalho Chehab committed Dec 5, 2009
1 parent d9ea5c5 commit 4b22c8e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7fec6fee56def62a53e3bc4db5baf6bca12c3474
refs/heads/master: c879d8cef4c5fc31ff2ab6e5b83bf4a537e77844
8 changes: 7 additions & 1 deletion trunk/drivers/media/dvb/frontends/stv090x.c
Original file line number Diff line number Diff line change
Expand Up @@ -3296,7 +3296,13 @@ static enum dvbfe_search stv090x_search(struct dvb_frontend *fe, struct dvb_fron
state->search_mode = STV090x_SEARCH_AUTO;
state->algo = STV090x_COLD_SEARCH;
state->fec = STV090x_PRERR;
state->search_range = 2000000;
if (state->srate > 10000000) {
dprintk(FE_DEBUG, 1, "Search range: 10 MHz");
state->search_range = 10000000;
} else {
dprintk(FE_DEBUG, 1, "Search range: 5 MHz");
state->search_range = 5000000;
}

if (stv090x_algo(state) == STV090x_RANGEOK) {
dprintk(FE_DEBUG, 1, "Search success!");
Expand Down

0 comments on commit 4b22c8e

Please sign in to comment.