]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
V4L/DVB (4532): Isl6421: Release callback installed incorrectly
authorTrent Piepho <xyzzy@speakeasy.org>
Fri, 25 Aug 2006 01:43:16 +0000 (22:43 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Tue, 26 Sep 2006 15:30:34 +0000 (12:30 -0300)
The release callback was installed in ops.release, it should have been
ops.release_sec.  This prevented to front-end release from getting
called.

Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/dvb/frontends/isl6421.c

index 0fc18f5a7167ed172532fc7b6bb80cb4fd4fac2e..ef319369ec262e2fd9016e0fa9d4b1674b433424 100644 (file)
@@ -126,7 +126,7 @@ struct dvb_frontend *isl6421_attach(struct dvb_frontend *fe, struct i2c_adapter
        }
 
        /* install release callback */
-       fe->ops.release = isl6421_release;
+       fe->ops.release_sec = isl6421_release;
 
        /* override frontend ops */
        fe->ops.set_voltage = isl6421_set_voltage;