From: Wei Yongjun <yongjun_...@trendmicro.com.cn>

Add the missing clk_disable_unprepare() before return from
jpu_open() in the software reset error handling case.

Signed-off-by: Wei Yongjun <yongjun_...@trendmicro.com.cn>
---
 drivers/media/platform/rcar_jpu.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/media/platform/rcar_jpu.c 
b/drivers/media/platform/rcar_jpu.c
index 16782ce..8e6c617 100644
--- a/drivers/media/platform/rcar_jpu.c
+++ b/drivers/media/platform/rcar_jpu.c
@@ -1280,7 +1280,7 @@ static int jpu_open(struct file *file)
                /* ...issue software reset */
                ret = jpu_reset(jpu);
                if (ret)
-                       goto device_prepare_rollback;
+                       goto jpu_reset_rollback;
        }
 
        jpu->ref_count++;
@@ -1288,6 +1288,8 @@ static int jpu_open(struct file *file)
        mutex_unlock(&jpu->mutex);
        return 0;
 
+jpu_reset_rollback:
+       clk_disable_unprepare(jpu->clk);
 device_prepare_rollback:
        mutex_unlock(&jpu->mutex);
 v4l_prepare_rollback:


--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to