[media] dvb_frontend: merge duplicate dvb_tuner_ops.release implementations
Most release callback functions are identical: free the "tuner_priv" and clear it. Let's eliminate some bloat by providing this simple implementation in the dvb_frontend library. Signed-off-by: Max Kellermann <max.kellermann@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
4d5030b69b
commit
22a613e898
@@ -42,13 +42,6 @@ struct tua6100_priv {
|
||||
u32 frequency;
|
||||
};
|
||||
|
||||
static int tua6100_release(struct dvb_frontend *fe)
|
||||
{
|
||||
kfree(fe->tuner_priv);
|
||||
fe->tuner_priv = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tua6100_sleep(struct dvb_frontend *fe)
|
||||
{
|
||||
struct tua6100_priv *priv = fe->tuner_priv;
|
||||
@@ -164,7 +157,7 @@ static const struct dvb_tuner_ops tua6100_tuner_ops = {
|
||||
.frequency_max = 2150000,
|
||||
.frequency_step = 1000,
|
||||
},
|
||||
.release = tua6100_release,
|
||||
.release = dvb_tuner_simple_release,
|
||||
.sleep = tua6100_sleep,
|
||||
.set_params = tua6100_set_params,
|
||||
.get_frequency = tua6100_get_frequency,
|
||||
|
Reference in New Issue
Block a user