diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-08-22 13:31:59 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-08-22 13:31:59 -0300 |
commit | 9774032a256c5068759be0d9f4a1413caf020dd1 (patch) | |
tree | 81846b4aa212e5c877eb04c2510e6c1f26aa6877 /linux/drivers/media/dvb | |
parent | f9948d885abdee5a90558d69e2976377caede63f (diff) | |
download | mediapointer-dvb-s2-9774032a256c5068759be0d9f4a1413caf020dd1.tar.gz mediapointer-dvb-s2-9774032a256c5068759be0d9f4a1413caf020dd1.tar.bz2 |
drx397xD: fix compilation error caused by changeset 71046dfb0853
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Priority: Normal
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/frontends/drx397xD.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/drx397xD.c b/linux/drivers/media/dvb/frontends/drx397xD.c index 3f9f19c70..7a2b2d461 100644 --- a/linux/drivers/media/dvb/frontends/drx397xD.c +++ b/linux/drivers/media/dvb/frontends/drx397xD.c @@ -1577,13 +1577,13 @@ struct dvb_frontend *drx397xD_attach(const struct drx397xD_config *config, memcpy(&state->config, config, sizeof(struct drx397xD_config)); /* check if the demod is there */ - if (RD16(s, 0x2410019) < 0) + if (RD16(state, 0x2410019) < 0) goto error; /* create dvb_frontend */ memcpy(&state->frontend.ops, &drx397x_ops, sizeof(struct dvb_frontend_ops)); - state->frontend.demodulator_priv = s; + state->frontend.demodulator_priv = state; return &state->frontend; error: |