diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-25 01:12:44 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-10-30 07:52:36 -0400 |
commit | 8900346d5ced18487588af20a8b6323858688d07 (patch) | |
tree | 928217603f5959b3c0efdff185c78aa819018748 | |
parent | fa3fd89f9d214ce2c66db927be5ea00b35989df0 (diff) |
video: exynos_mipi_dsi: Unlock the mutex before returning
Mutex should be unlocked before returning. Fixes mutex lock-unlock
imbalance issue.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/exynos/exynos_mipi_dsi_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/exynos/exynos_mipi_dsi_common.c b/drivers/video/exynos/exynos_mipi_dsi_common.c index 9b321652b810..7eed957b6014 100644 --- a/drivers/video/exynos/exynos_mipi_dsi_common.c +++ b/drivers/video/exynos/exynos_mipi_dsi_common.c | |||
@@ -376,6 +376,7 @@ int exynos_mipi_dsi_rd_data(struct mipi_dsim_device *dsim, unsigned int data_id, | |||
376 | "data id %x is not supported current DSI spec.\n", | 376 | "data id %x is not supported current DSI spec.\n", |
377 | data_id); | 377 | data_id); |
378 | 378 | ||
379 | mutex_unlock(&dsim->lock); | ||
379 | return -EINVAL; | 380 | return -EINVAL; |
380 | } | 381 | } |
381 | 382 | ||