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

iio: light: pa12203001: 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-20-jic23@kernel.org

+1 -3
+1 -3
drivers/iio/light/pa12203001.c
··· 186 186 } 187 187 188 188 if (on) { 189 - ret = pm_runtime_get_sync(&data->client->dev); 190 - if (ret < 0) 191 - pm_runtime_put_noidle(&data->client->dev); 189 + ret = pm_runtime_resume_and_get(&data->client->dev); 192 190 193 191 } else { 194 192 pm_runtime_mark_last_busy(&data->client->dev);