summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/tda665x.c
diff options
context:
space:
mode:
authorMax Kellermann2016-08-09 23:32:26 +0200
committerMauro Carvalho Chehab2016-11-18 18:05:44 +0100
commit22a613e89825ea7a3984a968463cc6d425bd8856 (patch)
treeec1841642bf43f88cf9b89323315dfca7418d0d6 /drivers/media/dvb-frontends/tda665x.c
parent[media] dvb-core/en50221: use dvb_remove_device() (diff)
downloadkernel-qcow2-linux-22a613e89825ea7a3984a968463cc6d425bd8856.tar.gz
kernel-qcow2-linux-22a613e89825ea7a3984a968463cc6d425bd8856.tar.xz
kernel-qcow2-linux-22a613e89825ea7a3984a968463cc6d425bd8856.zip
[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>
Diffstat (limited to 'drivers/media/dvb-frontends/tda665x.c')
-rw-r--r--drivers/media/dvb-frontends/tda665x.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/media/dvb-frontends/tda665x.c b/drivers/media/dvb-frontends/tda665x.c
index 7ca965987f40..39a1eb23ad04 100644
--- a/drivers/media/dvb-frontends/tda665x.c
+++ b/drivers/media/dvb-frontends/tda665x.c
@@ -197,20 +197,11 @@ static int tda665x_set_params(struct dvb_frontend *fe)
return 0;
}
-static int tda665x_release(struct dvb_frontend *fe)
-{
- struct tda665x_state *state = fe->tuner_priv;
-
- fe->tuner_priv = NULL;
- kfree(state);
- return 0;
-}
-
static const struct dvb_tuner_ops tda665x_ops = {
.get_status = tda665x_get_status,
.set_params = tda665x_set_params,
.get_frequency = tda665x_get_frequency,
- .release = tda665x_release
+ .release = dvb_tuner_simple_release,
};
struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe,