diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-12-30 22:25:27 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-12-31 09:58:19 -0200 |
commit | 59d3cc1975db3676da707ea7083dc7e15117409d (patch) | |
tree | 285c4f868d2983e127e11928ea4ae34dbc428f96 /drivers/media/dvb | |
parent | f311f68abba633426643bb5e743e4edac4ddf838 (diff) | |
download | talos-obmc-linux-59d3cc1975db3676da707ea7083dc7e15117409d.tar.gz talos-obmc-linux-59d3cc1975db3676da707ea7083dc7e15117409d.zip |
[media] af9013: convert get|set_fontend to use DVBv5 parameters
Instead of using dvb_frontend_parameters struct, that were
designed for a subset of the supported standards, use the DVBv5
cache information.
Also, fill the supported delivery systems at dvb_frontend_ops
struct.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/frontends/af9013.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/media/dvb/frontends/af9013.c b/drivers/media/dvb/frontends/af9013.c index 8a8f78aa3990..a70358c06230 100644 --- a/drivers/media/dvb/frontends/af9013.c +++ b/drivers/media/dvb/frontends/af9013.c @@ -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; @@ -847,10 +846,9 @@ err: } 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]; @@ -1482,6 +1480,7 @@ err: EXPORT_SYMBOL(af9013_attach); static struct dvb_frontend_ops af9013_ops = { + .delsys = { SYS_DVBT }, .info = { .name = "Afatech AF9013", .type = FE_OFDM, @@ -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, |