From: Jonathan Cameron Date: Sun, 9 May 2021 11:33:47 +0000 (+0100) Subject: iio: light: vcnl4000: Use pm_runtime_resume_and_get() to replace open coding. X-Git-Tag: v5.15~790^2~180^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db27fdb33d10b582371f2be294d2b6b2ca501043;p=platform%2Fkernel%2Flinux-starfive.git iio: light: vcnl4000: Use pm_runtime_resume_and_get() to replace open coding. Found using coccicheck script under review at: https://lore.kernel.org/lkml/20210427141946.2478411-1-Julia.Lawall@inria.fr/ This is a prequel to taking a closer look at the runtime pm in IIO drivers in general. Signed-off-by: Jonathan Cameron Cc: Mathieu Othacehe Reviewed-by: Mauro Carvalho Chehab Link: https://lore.kernel.org/r/20210509113354.660190-22-jic23@kernel.org --- diff --git a/drivers/iio/light/vcnl4000.c b/drivers/iio/light/vcnl4000.c index 4a61865..0177232 100644 --- a/drivers/iio/light/vcnl4000.c +++ b/drivers/iio/light/vcnl4000.c @@ -413,9 +413,7 @@ static int vcnl4000_set_pm_runtime_state(struct vcnl4000_data *data, bool on) int ret; if (on) { - ret = pm_runtime_get_sync(dev); - if (ret < 0) - pm_runtime_put_noidle(dev); + ret = pm_runtime_resume_and_get(dev); } else { pm_runtime_mark_last_busy(dev); ret = pm_runtime_put_autosuspend(dev);