Skip to content

Commit

Permalink
V4L/DVB (4532): Isl6421: Release callback installed incorrectly
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Trent Piepho authored and Mauro Carvalho Chehab committed Sep 26, 2006
1 parent fb6065b commit 62a7b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/frontends/isl6421.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 62a7b3e

Please sign in to comment.