diff options
author | Dan Carpenter <error27@gmail.com> | 2010-08-12 03:41:58 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-09-27 21:21:45 -0400 |
commit | 590a58d18027b18db78f538aca592c2cdb249079 (patch) | |
tree | d272b374cd191acc32f34f06d8dd51251f6645bb /drivers/media | |
parent | 0f63a14d357b3a80abb5203a574cbb3f8988c2f7 (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/media')
-rw-r--r-- | drivers/media/video/s5p-fimc/fimc-core.c | 3 |
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 b151c7be8a50..1beb2263d18c 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; |