V4L/DVB (9428): Fix: assignment of wrong values

Signed-off-by: Marko Schluessler <marco@lordzodiac.de>
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Marko Schluessler 2007-10-23 19:56:18 -03:00 committed by Mauro Carvalho Chehab
parent 7e4e8c52e3
commit 7d8f1e5764
3 changed files with 4 additions and 4 deletions

View file

@ -515,7 +515,7 @@ enum stb0899_status stb0899_dvbs_algo(struct stb0899_state *state)
struct stb0899_config *config = state->config; struct stb0899_config *config = state->config;
u8 bclc, reg; u8 bclc, reg;
u8 cfr[1]; u8 cfr[2];
u8 eq_const[10]; u8 eq_const[10];
s32 clnI = 3; s32 clnI = 3;
u32 bandwidth = 0; u32 bandwidth = 0;

View file

@ -611,7 +611,7 @@ static void stb0899_init_calc(struct stb0899_state *state)
{ {
struct stb0899_internal *internal = &state->internal; struct stb0899_internal *internal = &state->internal;
int master_clk; int master_clk;
u8 agc[1]; u8 agc[2];
u8 agc1cn; u8 agc1cn;
u32 reg; u32 reg;

View file

@ -487,7 +487,7 @@ static int stb6100_set_state(struct dvb_frontend *fe,
switch (param) { switch (param) {
case DVBFE_TUNER_FREQUENCY: case DVBFE_TUNER_FREQUENCY:
stb6100_set_frequency(fe, state->frequency); stb6100_set_frequency(fe, state->frequency);
state->frequency = tstate->frequency; tstate->frequency = state->frequency;
break; break;
case DVBFE_TUNER_TUNERSTEP: case DVBFE_TUNER_TUNERSTEP:
break; break;
@ -495,7 +495,7 @@ static int stb6100_set_state(struct dvb_frontend *fe,
break; break;
case DVBFE_TUNER_BANDWIDTH: case DVBFE_TUNER_BANDWIDTH:
stb6100_set_bandwidth(fe, state->bandwidth); stb6100_set_bandwidth(fe, state->bandwidth);
state->bandwidth = tstate->bandwidth; tstate->bandwidth = state->bandwidth;
break; break;
case DVBFE_TUNER_REFCLOCK: case DVBFE_TUNER_REFCLOCK:
break; break;