In both error and clean up cases there is no need to wait for runtime PM
to finish suspending the device.

Signed-off-by: Guennadi Liakhovetski <g.liakhovet...@gmx.de>
---
 .../platform/soc_camera/sh_mobile_ceu_camera.c     |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/platform/soc_camera/sh_mobile_ceu_camera.c 
b/drivers/media/platform/soc_camera/sh_mobile_ceu_camera.c
index 0a24253..41e4664 100644
--- a/drivers/media/platform/soc_camera/sh_mobile_ceu_camera.c
+++ b/drivers/media/platform/soc_camera/sh_mobile_ceu_camera.c
@@ -572,7 +572,7 @@ static int sh_mobile_ceu_add_device(struct 
soc_camera_device *icd)
 
        ret = v4l2_subdev_call(csi2_sd, core, s_power, 1);
        if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV) {
-               pm_runtime_put_sync(ici->v4l2_dev.dev);
+               pm_runtime_put(ici->v4l2_dev.dev);
                return ret;
        }
 
@@ -612,7 +612,7 @@ static void sh_mobile_ceu_remove_device(struct 
soc_camera_device *icd)
        }
        spin_unlock_irq(&pcdev->lock);
 
-       pm_runtime_put_sync(ici->v4l2_dev.dev);
+       pm_runtime_put(ici->v4l2_dev.dev);
 
        dev_info(icd->parent,
                 "SuperH Mobile CEU driver detached from camera %d\n",
-- 
1.7.2.5

--
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