Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357221
b: refs/heads/master
c: ee45ddc
h: refs/heads/master
i:
  357219: ead3068
v: v3
  • Loading branch information
Ezequiel Garcia authored and Mauro Carvalho Chehab committed Dec 27, 2012
1 parent bf32a67 commit 1102962
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 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: b9b1b3a8f7b76035140912bc9e3a325e58fc6d58
refs/heads/master: ee45ddc1e03afc221afad273503b6c2fc0683008
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb-frontends/cx24116.c
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ static int cx24116_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
static void cx24116_clone_params(struct dvb_frontend *fe)
{
struct cx24116_state *state = fe->demodulator_priv;
memcpy(&state->dcur, &state->dnxt, sizeof(state->dcur));
state->dcur = state->dnxt;
}

/* Wait for LNB */
Expand Down
5 changes: 2 additions & 3 deletions trunk/drivers/media/dvb-frontends/drxd_hard.c
Original file line number Diff line number Diff line change
Expand Up @@ -2965,7 +2965,7 @@ struct dvb_frontend *drxd_attach(const struct drxd_config *config,
return NULL;
memset(state, 0, sizeof(*state));

memcpy(&state->ops, &drxd_ops, sizeof(struct dvb_frontend_ops));
state->ops = drxd_ops;
state->dev = dev;
state->config = *config;
state->i2c = i2c;
Expand All @@ -2976,8 +2976,7 @@ struct dvb_frontend *drxd_attach(const struct drxd_config *config,
if (Read16(state, 0, 0, 0) < 0)
goto error;

memcpy(&state->frontend.ops, &drxd_ops,
sizeof(struct dvb_frontend_ops));
state->frontend.ops = drxd_ops;
state->frontend.demodulator_priv = state;
ConfigureMPEGOutput(state, 0);
/* add few initialization to allow gate control */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb-frontends/stv0299.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ static int stv0299_send_legacy_dish_cmd (struct dvb_frontend* fe, unsigned long

do_gettimeofday (&nexttime);
if (debug_legacy_dish_switch)
memcpy (&tv[0], &nexttime, sizeof (struct timeval));
tv[0] = nexttime;
stv0299_writeregI (state, 0x0c, reg0x0c | 0x50); /* set LNB to 18V */

dvb_frontend_sleep_until(&nexttime, 32000);
Expand Down

0 comments on commit 1102962

Please sign in to comment.