diff options
author | Max Kellermann <max.kellermann@gmail.com> | 2016-08-09 18:32:26 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-18 15:05:44 -0200 |
commit | 22a613e89825ea7a3984a968463cc6d425bd8856 (patch) | |
tree | ec1841642bf43f88cf9b89323315dfca7418d0d6 /drivers/media/dvb-frontends/stv6110.c | |
parent | 4d5030b69bb4880a760406a6d3d519f02b9351dc (diff) | |
download | linux-stable-22a613e89825ea7a3984a968463cc6d425bd8856.tar.gz linux-stable-22a613e89825ea7a3984a968463cc6d425bd8856.tar.bz2 linux-stable-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/stv6110.c')
-rw-r--r-- | drivers/media/dvb-frontends/stv6110.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/media/dvb-frontends/stv6110.c b/drivers/media/dvb-frontends/stv6110.c index 66a5a7f2295c..d9a88adc4c10 100644 --- a/drivers/media/dvb-frontends/stv6110.c +++ b/drivers/media/dvb-frontends/stv6110.c @@ -59,13 +59,6 @@ static s32 abssub(s32 a, s32 b) return b - a; }; -static int stv6110_release(struct dvb_frontend *fe) -{ - kfree(fe->tuner_priv); - fe->tuner_priv = NULL; - return 0; -} - static int stv6110_write_regs(struct dvb_frontend *fe, u8 buf[], int start, int len) { @@ -390,7 +383,7 @@ static const struct dvb_tuner_ops stv6110_tuner_ops = { .frequency_step = 1000, }, .init = stv6110_init, - .release = stv6110_release, + .release = dvb_tuner_simple_release, .sleep = stv6110_sleep, .set_params = stv6110_set_params, .get_frequency = stv6110_get_frequency, |