aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinobu Mita <[email protected]>2019-03-30 10:01:32 -0400
committerMauro Carvalho Chehab <[email protected]>2019-04-22 11:35:11 -0400
commit384538bda10913e5c94ec5b5d34bd3075931bcf4 (patch)
tree494477aea486a9e11a8935fcb66d7a864f6cf344
parentbccb89cf9cd07a0690d519696a00c00a973b3fe4 (diff)
media: ov2659: fix unbalanced mutex_lock/unlock
Avoid returning with mutex locked. Fixes: fa8cb6444c32 ("[media] ov2659: Don't depend on subdev API") Cc: "Lad, Prabhakar" <[email protected]> Signed-off-by: Akinobu Mita <[email protected]> Acked-by: Lad, Prabhakar <[email protected]> Signed-off-by: Sakari Ailus <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r--drivers/media/i2c/ov2659.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ov2659.c b/drivers/media/i2c/ov2659.c
index a1e9a980a445..5ed2413eac8a 100644
--- a/drivers/media/i2c/ov2659.c
+++ b/drivers/media/i2c/ov2659.c
@@ -1132,7 +1132,7 @@ static int ov2659_set_fmt(struct v4l2_subdev *sd,
mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
*mf = fmt->format;
#else
- return -ENOTTY;
+ ret = -ENOTTY;
#endif
} else {
s64 val;