Commit 6680e73b authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: dvb_frontend: get rid of set_property() callback

Now that all clients of set_property() were removed, get rid
of this callback.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 8f8a19fc
...@@ -1749,13 +1749,6 @@ static int dtv_property_process_set(struct dvb_frontend *fe, ...@@ -1749,13 +1749,6 @@ static int dtv_property_process_set(struct dvb_frontend *fe,
int r = 0; int r = 0;
struct dtv_frontend_properties *c = &fe->dtv_property_cache; struct dtv_frontend_properties *c = &fe->dtv_property_cache;
/* Allow the frontend to validate incoming properties */
if (fe->ops.set_property) {
r = fe->ops.set_property(fe, tvp);
if (r < 0)
return r;
}
dtv_property_dump(fe, true, tvp); dtv_property_dump(fe, true, tvp);
switch(tvp->cmd) { switch(tvp->cmd) {
......
...@@ -401,11 +401,8 @@ struct dtv_frontend_properties; ...@@ -401,11 +401,8 @@ struct dtv_frontend_properties;
* @search: callback function used on some custom algo search algos. * @search: callback function used on some custom algo search algos.
* @tuner_ops: pointer to struct dvb_tuner_ops * @tuner_ops: pointer to struct dvb_tuner_ops
* @analog_ops: pointer to struct analog_demod_ops * @analog_ops: pointer to struct analog_demod_ops
* @set_property: callback function to allow the frontend to validade
* incoming properties. Should not be used on new drivers.
*/ */
struct dvb_frontend_ops { struct dvb_frontend_ops {
struct dvb_frontend_info info; struct dvb_frontend_info info;
u8 delsys[MAX_DELSYS]; u8 delsys[MAX_DELSYS];
...@@ -464,8 +461,6 @@ struct dvb_frontend_ops { ...@@ -464,8 +461,6 @@ struct dvb_frontend_ops {
struct dvb_tuner_ops tuner_ops; struct dvb_tuner_ops tuner_ops;
struct analog_demod_ops analog_ops; struct analog_demod_ops analog_ops;
int (*set_property)(struct dvb_frontend* fe, struct dtv_property* tvp);
}; };
#ifdef __DVB_CORE__ #ifdef __DVB_CORE__
......
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