|
@@ -1554,8 +1554,7 @@ static enum dvbfe_search stb0899_search(struct dvb_frontend *fe, struct dvbfe_pa
|
|
|
}
|
|
|
dprintk(verbose, FE_DEBUG, 1, "delivery system=%d", state->delsys);
|
|
|
|
|
|
- SearchRange = 3000000; /* Search Bandwidth (3 Mhz, was initially 10 Mhz) */
|
|
|
-// SearchRange = 10000000; /* Search Bandwidth (3 Mhz, was initially 10 Mhz) */
|
|
|
+ SearchRange = 10000000;
|
|
|
dprintk(verbose, FE_DEBUG, 1, "Frequency=%d, Srate=%d", i_params->freq, i_params->srate);
|
|
|
/* checking Search Range is meaningless for a fixed 3 Mhz */
|
|
|
if (INRANGE(i_params->srate, 1000000, 45000000)) {
|
|
@@ -1626,7 +1625,7 @@ static enum dvbfe_search stb0899_search(struct dvb_frontend *fe, struct dvbfe_pa
|
|
|
internal->srch_range = SearchRange;
|
|
|
|
|
|
if (state->config->tuner_set_bandwidth)
|
|
|
- state->config->tuner_set_bandwidth(fe, (135 * (stb0899_carr_width(state) + SearchRange)) / 100);
|
|
|
+ state->config->tuner_set_bandwidth(fe, (stb0899_carr_width(state) + SearchRange));
|
|
|
if (state->config->tuner_get_bandwidth)
|
|
|
state->config->tuner_get_bandwidth(fe, &internal->tuner_bw);
|
|
|
|