From: Dan Carpenter Date: Tue, 4 May 2010 11:36:34 +0000 (-0300) Subject: V4L/DVB: media/IR/imon: potential double unlock on error X-Git-Tag: v3.12-rc1~10285^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9723dbb034e45775037c5dd098652e1628a1c9ef;p=kernel%2Fkernel-generic.git V4L/DVB: media/IR/imon: potential double unlock on error If there is an error here we should unlock in the caller (which is imon_init_intf1()). We can remove this stray unlock. Signed-off-by: Dan Carpenter Acked-by: Jarod Wilson Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/IR/imon.c b/drivers/media/IR/imon.c index d5d8d93..ca2b490 100644 --- a/drivers/media/IR/imon.c +++ b/drivers/media/IR/imon.c @@ -1776,7 +1776,6 @@ static struct input_dev *imon_init_touch(struct imon_context *ictx) touch_register_failed: input_free_device(ictx->touch); - mutex_unlock(&ictx->lock); touch_alloc_failed: return NULL;