Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285554
b: refs/heads/master
c: b2a29b5
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Dec 31, 2011
1 parent 584bb9a commit ec1504e
Show file tree
Hide file tree
Showing 2 changed files with 6 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: 787d92e176943913d7583f0f04e6d89a0014c5b4
refs/heads/master: b2a29b578d9c21b2e5c88020f830d3c42115c51d
10 changes: 5 additions & 5 deletions trunk/drivers/media/dvb/frontends/tda10071.c
Original file line number Diff line number Diff line change
Expand Up @@ -636,8 +636,7 @@ static int tda10071_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
return ret;
}

static int tda10071_set_frontend(struct dvb_frontend *fe,
struct dvb_frontend_parameters *params)
static int tda10071_set_frontend(struct dvb_frontend *fe)
{
struct tda10071_priv *priv = fe->demodulator_priv;
struct tda10071_cmd cmd;
Expand Down Expand Up @@ -778,7 +777,7 @@ static int tda10071_set_frontend(struct dvb_frontend *fe,
}

static int tda10071_get_frontend(struct dvb_frontend *fe,
struct dvb_frontend_parameters *p)
struct dtv_frontend_properties *p)
{
struct tda10071_priv *priv = fe->demodulator_priv;
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Expand Down Expand Up @@ -1217,6 +1216,7 @@ struct dvb_frontend *tda10071_attach(const struct tda10071_config *config,
EXPORT_SYMBOL(tda10071_attach);

static struct dvb_frontend_ops tda10071_ops = {
.delsys = { SYS_DVBT, SYS_DVBT2 },
.info = {
.name = "NXP TDA10071",
.type = FE_QPSK,
Expand Down Expand Up @@ -1247,8 +1247,8 @@ static struct dvb_frontend_ops tda10071_ops = {
.init = tda10071_init,
.sleep = tda10071_sleep,

.set_frontend_legacy = tda10071_set_frontend,
.get_frontend_legacy = tda10071_get_frontend,
.set_frontend = tda10071_set_frontend,
.get_frontend = tda10071_get_frontend,

.read_status = tda10071_read_status,
.read_snr = tda10071_read_snr,
Expand Down

0 comments on commit ec1504e

Please sign in to comment.