Commit 5715836f authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] stb0899: convert get_frontend to the new struct

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 14e3dcca
...@@ -1589,13 +1589,13 @@ static int stb0899_track(struct dvb_frontend *fe, struct dvb_frontend_parameters ...@@ -1589,13 +1589,13 @@ static int stb0899_track(struct dvb_frontend *fe, struct dvb_frontend_parameters
return 0; return 0;
} }
static int stb0899_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *p) static int stb0899_get_frontend(struct dvb_frontend *fe, struct dtv_frontend_properties *p)
{ {
struct stb0899_state *state = fe->demodulator_priv; struct stb0899_state *state = fe->demodulator_priv;
struct stb0899_internal *internal = &state->internal; struct stb0899_internal *internal = &state->internal;
dprintk(state->verbose, FE_DEBUG, 1, "Get params"); dprintk(state->verbose, FE_DEBUG, 1, "Get params");
p->u.qpsk.symbol_rate = internal->srate; p->symbol_rate = internal->srate;
return 0; return 0;
} }
...@@ -1648,7 +1648,7 @@ static struct dvb_frontend_ops stb0899_ops = { ...@@ -1648,7 +1648,7 @@ static struct dvb_frontend_ops stb0899_ops = {
.get_frontend_algo = stb0899_frontend_algo, .get_frontend_algo = stb0899_frontend_algo,
.search = stb0899_search, .search = stb0899_search,
.track = stb0899_track, .track = stb0899_track,
.get_frontend_legacy = stb0899_get_frontend, .get_frontend = stb0899_get_frontend,
.read_status = stb0899_read_status, .read_status = stb0899_read_status,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment