projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef40c00
)
[media] e4000: fix crash when attach fails
author
Antti Palosaari
<crope@iki.fi>
Sat, 22 Sep 2012 15:32:27 +0000
(12:32 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Thu, 27 Sep 2012 18:17:44 +0000
(15:17 -0300)
Callbacks were set even attach failed. This leads calling
.release() in error case and resulted crash.
Reported-by: Oliver Schinagl <oliver@schinagl.nl>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/tuners/e4000.c
patch
|
blob
|
history
diff --git
a/drivers/media/tuners/e4000.c
b/drivers/media/tuners/e4000.c
index
ffaa482
..
1b33ed3
100644
(file)
--- a/
drivers/media/tuners/e4000.c
+++ b/
drivers/media/tuners/e4000.c
@@
-366,9
+366,6
@@
struct dvb_frontend *e4000_attach(struct dvb_frontend *fe,
priv->cfg = cfg;
priv->i2c = i2c;
- fe->tuner_priv = priv;
- memcpy(&fe->ops.tuner_ops, &e4000_tuner_ops,
- sizeof(struct dvb_tuner_ops));
/* check if the tuner is there */
ret = e4000_rd_reg(priv, 0x02, &chip_id);
@@
-389,6
+386,10
@@
struct dvb_frontend *e4000_attach(struct dvb_frontend *fe,
"%s: Elonics E4000 successfully identified\n",
KBUILD_MODNAME);
+ fe->tuner_priv = priv;
+ memcpy(&fe->ops.tuner_ops, &e4000_tuner_ops,
+ sizeof(struct dvb_tuner_ops));
+
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);