Commit 79e790ff authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

media: sunxi: use pm_runtime_resume_and_get()



Commit dd8088d5 ("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.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 75c573eb
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -206,9 +206,9 @@ static int sun4i_csi_open(struct file *file)
	if (ret)
		return ret;

	ret = pm_runtime_get_sync(csi->dev);
	ret = pm_runtime_resume_and_get(csi->dev);
	if (ret < 0)
		goto err_pm_put;
		goto err_unlock;

	ret = v4l2_pipeline_pm_get(&csi->vdev.entity);
	if (ret)
@@ -227,6 +227,8 @@ static int sun4i_csi_open(struct file *file)

err_pm_put:
	pm_runtime_put(csi->dev);

err_unlock:
	mutex_unlock(&csi->lock);

	return ret;