diff options
Diffstat (limited to 'drivers/media/dvb/frontends/or51211.c')
-rw-r--r-- | drivers/media/dvb/frontends/or51211.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/media/dvb/frontends/or51211.c b/drivers/media/dvb/frontends/or51211.c index c709ce6771c8..c625b57b4333 100644 --- a/drivers/media/dvb/frontends/or51211.c +++ b/drivers/media/dvb/frontends/or51211.c | |||
@@ -218,15 +218,15 @@ static int or51211_setmode(struct dvb_frontend* fe, int mode) | |||
218 | return 0; | 218 | return 0; |
219 | } | 219 | } |
220 | 220 | ||
221 | static int or51211_set_parameters(struct dvb_frontend* fe, | 221 | static int or51211_set_parameters(struct dvb_frontend *fe) |
222 | struct dvb_frontend_parameters *param) | ||
223 | { | 222 | { |
223 | struct dtv_frontend_properties *p = &fe->dtv_property_cache; | ||
224 | struct or51211_state* state = fe->demodulator_priv; | 224 | struct or51211_state* state = fe->demodulator_priv; |
225 | 225 | ||
226 | /* Change only if we are actually changing the channel */ | 226 | /* Change only if we are actually changing the channel */ |
227 | if (state->current_frequency != param->frequency) { | 227 | if (state->current_frequency != p->frequency) { |
228 | if (fe->ops.tuner_ops.set_params) { | 228 | if (fe->ops.tuner_ops.set_params) { |
229 | fe->ops.tuner_ops.set_params(fe, param); | 229 | fe->ops.tuner_ops.set_params(fe); |
230 | if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0); | 230 | if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0); |
231 | } | 231 | } |
232 | 232 | ||
@@ -234,7 +234,7 @@ static int or51211_set_parameters(struct dvb_frontend* fe, | |||
234 | or51211_setmode(fe,0); | 234 | or51211_setmode(fe,0); |
235 | 235 | ||
236 | /* Update current frequency */ | 236 | /* Update current frequency */ |
237 | state->current_frequency = param->frequency; | 237 | state->current_frequency = p->frequency; |
238 | } | 238 | } |
239 | return 0; | 239 | return 0; |
240 | } | 240 | } |
@@ -544,10 +544,9 @@ struct dvb_frontend* or51211_attach(const struct or51211_config* config, | |||
544 | } | 544 | } |
545 | 545 | ||
546 | static struct dvb_frontend_ops or51211_ops = { | 546 | static struct dvb_frontend_ops or51211_ops = { |
547 | 547 | .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, | |
548 | .info = { | 548 | .info = { |
549 | .name = "Oren OR51211 VSB Frontend", | 549 | .name = "Oren OR51211 VSB Frontend", |
550 | .type = FE_ATSC, | ||
551 | .frequency_min = 44000000, | 550 | .frequency_min = 44000000, |
552 | .frequency_max = 958000000, | 551 | .frequency_max = 958000000, |
553 | .frequency_stepsize = 166666, | 552 | .frequency_stepsize = 166666, |