aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/light
diff options
context:
space:
mode:
authorJonathan Cameron <Jonathan.Cameron@huawei.com>2021-05-09 12:33:46 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2021-05-17 13:54:26 +0100
commit6e4183ec8dfdbce1a48a82d8b8d5648c98d5bfd8 (patch)
treeb6588b6e023f8144cbd6496d5b08ceaf69dc283b /drivers/iio/light
parentiio: dac: stm32-dac: Use pm_runtime_resume_and_get() to replace open coding. (diff)
downloadlinux-dev-6e4183ec8dfdbce1a48a82d8b8d5648c98d5bfd8.tar.xz
linux-dev-6e4183ec8dfdbce1a48a82d8b8d5648c98d5bfd8.zip
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
Diffstat (limited to 'drivers/iio/light')
-rw-r--r--drivers/iio/light/us5182d.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/iio/light/us5182d.c b/drivers/iio/light/us5182d.c
index 393f27b75c75..96e4a66ddf28 100644
--- a/drivers/iio/light/us5182d.c
+++ b/drivers/iio/light/us5182d.c
@@ -367,9 +367,7 @@ static int us5182d_set_power_state(struct us5182d_data *data, bool on)
return 0;
if (on) {
- ret = pm_runtime_get_sync(&data->client->dev);
- if (ret < 0)
- pm_runtime_put_noidle(&data->client->dev);
+ ret = pm_runtime_resume_and_get(&data->client->dev);
} else {
pm_runtime_mark_last_busy(&data->client->dev);
ret = pm_runtime_put_autosuspend(&data->client->dev);