OSDN Git Service

media: sti/delta: use pm_runtime_resume_and_get()
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Fri, 23 Apr 2021 15:19:10 +0000 (17:19 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Mon, 10 May 2021 09:36:34 +0000 (11:36 +0200)
Commit dd8088d5a896 ("PM: runtime: Add pm_runtime_resume_and_get to deal with usage counter")
added pm_runtime_resume_and_get() in order to automatically handle
dev->power.usage_count decrement on errors.

Use the new API, in order to cleanup the error check logic.

Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/sti/delta/delta-v4l2.c

index c691b3d..064a00a 100644 (file)
@@ -954,10 +954,8 @@ static void delta_run_work(struct work_struct *work)
        /* enable the hardware */
        if (!dec->pm) {
                ret = delta_get_sync(ctx);
-               if (ret) {
-                       delta_put_autosuspend(ctx);
+               if (ret)
                        goto err;
-               }
        }
 
        /* decode this access unit */
@@ -1277,9 +1275,9 @@ int delta_get_sync(struct delta_ctx *ctx)
        int ret = 0;
 
        /* enable the hardware */
-       ret = pm_runtime_get_sync(delta->dev);
+       ret = pm_runtime_resume_and_get(delta->dev);
        if (ret < 0) {
-               dev_err(delta->dev, "%s pm_runtime_get_sync failed (%d)\n",
+               dev_err(delta->dev, "%s pm_runtime_resume_and_get failed (%d)\n",
                        __func__, ret);
                return ret;
        }