aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-08-12 03:41:58 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-09-27 21:21:45 -0400
commit590a58d18027b18db78f538aca592c2cdb249079 (patch)
treed272b374cd191acc32f34f06d8dd51251f6645bb /drivers
parent0f63a14d357b3a80abb5203a574cbb3f8988c2f7 (diff)
V4L/DVB: unlock on error path
If we return directly here then we miss out on some mutex_unlock()s Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/s5p-fimc/fimc-core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/s5p-fimc/fimc-core.c b/drivers/media/video/s5p-fimc/fimc-core.c
index b151c7be8a5..1beb2263d18 100644
--- a/drivers/media/video/s5p-fimc/fimc-core.c
+++ b/drivers/media/video/s5p-fimc/fimc-core.c
@@ -822,7 +822,8 @@ static int fimc_m2m_s_fmt(struct file *file, void *priv, struct v4l2_format *f)
822 } else { 822 } else {
823 v4l2_err(&ctx->fimc_dev->m2m.v4l2_dev, 823 v4l2_err(&ctx->fimc_dev->m2m.v4l2_dev,
824 "Wrong buffer/video queue type (%d)\n", f->type); 824 "Wrong buffer/video queue type (%d)\n", f->type);
825 return -EINVAL; 825 ret = -EINVAL;
826 goto s_fmt_out;
826 } 827 }
827 828
828 pix = &f->fmt.pix; 829 pix = &f->fmt.pix;