summaryrefslogtreecommitdiffstats
path: root/drivers/iio/chemical/scd30.h
diff options
context:
space:
mode:
authorJonathan Cameron <Jonathan.Cameron@huawei.com>2022-04-01 15:06:03 +0100
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2022-04-05 20:16:34 +0200
commit95d5a7214b86e64dc97db3d35f6d97533f89fb32 (patch)
tree7fb781a4109bb9a632265f901f26562de1defead /drivers/iio/chemical/scd30.h
parent3123109284176b1532874591f7c81f3837bbdc17 (diff)
downloadlinux-stable-95d5a7214b86e64dc97db3d35f6d97533f89fb32.tar.gz
linux-stable-95d5a7214b86e64dc97db3d35f6d97533f89fb32.tar.bz2
linux-stable-95d5a7214b86e64dc97db3d35f6d97533f89fb32.zip
iio: chemical: scd30: Export dev_pm_ops instead of suspend() and resume()
Whilst here move to the new infrastructure using pm_sleep_ptr() and EXPORT_DEV_PM_OPS() so as to let the compiler remove the unused code if CONFIG_SLEEP is not defined. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Cc: Tomasz Duszynski <tomasz.duszynski@octakon.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/iio/chemical/scd30.h')
-rw-r--r--drivers/iio/chemical/scd30.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/iio/chemical/scd30.h b/drivers/iio/chemical/scd30.h
index f60127bfe0f4..1ac9f3f79271 100644
--- a/drivers/iio/chemical/scd30.h
+++ b/drivers/iio/chemical/scd30.h
@@ -68,10 +68,7 @@ struct scd30_state {
scd30_command_t command;
};
-int scd30_suspend(struct device *dev);
-int scd30_resume(struct device *dev);
-
-static __maybe_unused SIMPLE_DEV_PM_OPS(scd30_pm_ops, scd30_suspend, scd30_resume);
+extern const struct dev_pm_ops scd30_pm_ops;
int scd30_probe(struct device *dev, int irq, const char *name, void *priv, scd30_command_t command);