Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: light: us5182: 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 <Jonathan.Cameron@huawei.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/20210509113354.660190-21-jic23@kernel.org

+1 -3
+1 -3
drivers/iio/light/us5182d.c
··· 367 367 return 0; 368 368 369 369 if (on) { 370 - ret = pm_runtime_get_sync(&data->client->dev); 371 - if (ret < 0) 372 - pm_runtime_put_noidle(&data->client->dev); 370 + ret = pm_runtime_resume_and_get(&data->client->dev); 373 371 } else { 374 372 pm_runtime_mark_last_busy(&data->client->dev); 375 373 ret = pm_runtime_put_autosuspend(&data->client->dev);