Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285578
b: refs/heads/master
c: 59d3cc1
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Dec 31, 2011
1 parent 0634057 commit 9b930e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 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: f311f68abba633426643bb5e743e4edac4ddf838
refs/heads/master: 59d3cc1975db3676da707ea7083dc7e15117409d
11 changes: 5 additions & 6 deletions trunk/drivers/media/dvb/frontends/af9013.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,7 @@ static int af9013_get_tune_settings(struct dvb_frontend *fe,
return 0;
}

static int af9013_set_frontend(struct dvb_frontend *fe,
struct dvb_frontend_parameters *p)
static int af9013_set_frontend(struct dvb_frontend *fe)
{
struct af9013_state *state = fe->demodulator_priv;
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Expand Down Expand Up @@ -847,10 +846,9 @@ static int af9013_set_frontend(struct dvb_frontend *fe,
}

static int af9013_get_frontend(struct dvb_frontend *fe,
struct dvb_frontend_parameters *p)
struct dtv_frontend_properties *c)
{
struct af9013_state *state = fe->demodulator_priv;
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
int ret;
u8 buf[3];

Expand Down Expand Up @@ -1482,6 +1480,7 @@ struct dvb_frontend *af9013_attach(const struct af9013_config *config,
EXPORT_SYMBOL(af9013_attach);

static struct dvb_frontend_ops af9013_ops = {
.delsys = { SYS_DVBT },
.info = {
.name = "Afatech AF9013",
.type = FE_OFDM,
Expand Down Expand Up @@ -1512,8 +1511,8 @@ static struct dvb_frontend_ops af9013_ops = {
.sleep = af9013_sleep,

.get_tune_settings = af9013_get_tune_settings,
.set_frontend_legacy = af9013_set_frontend,
.get_frontend_legacy = af9013_get_frontend,
.set_frontend = af9013_set_frontend,
.get_frontend = af9013_get_frontend,

.read_status = af9013_read_status,
.read_snr = af9013_read_snr,
Expand Down

0 comments on commit 9b930e7

Please sign in to comment.