summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/tda826x.c
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2006-11-19 19:49:11 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-12-10 08:51:33 -0200
commit2213918a99d6292767b6d4aae3e3f4b0520528a5 (patch)
tree1338d161286480a138fcccbd817df577d74eada8 /drivers/media/dvb/frontends/tda826x.c
parent76db93d03f1e9a9a3371f787ae30780cdf10400c (diff)
downloadop-kernel-dev-2213918a99d6292767b6d4aae3e3f4b0520528a5.zip
op-kernel-dev-2213918a99d6292767b6d4aae3e3f4b0520528a5.tar.gz
V4L/DVB (4847): Drivers/media/dvb/frontends: kfree() cleanups
We don't have to check for NULL before kfree() Acked-by: Andrew de Quincey <adq_dvb@lidskialf.net> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/tda826x.c')
-rw-r--r--drivers/media/dvb/frontends/tda826x.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/tda826x.c b/drivers/media/dvb/frontends/tda826x.c
index 34815b0..4f01d7b 100644
--- a/drivers/media/dvb/frontends/tda826x.c
+++ b/drivers/media/dvb/frontends/tda826x.c
@@ -42,8 +42,7 @@ struct tda826x_priv {
static int tda826x_release(struct dvb_frontend *fe)
{
- if (fe->tuner_priv)
- kfree(fe->tuner_priv);
+ kfree(fe->tuner_priv);
fe->tuner_priv = NULL;
return 0;
}
OpenPOWER on IntegriCloud