diff options
| author | Jonathan Cameron <[email protected]> | 2022-08-07 15:54:57 +0100 |
|---|---|---|
| committer | Jonathan Cameron <[email protected]> | 2022-08-15 22:30:01 +0100 |
| commit | 282d16b628e4979eee692f5f93a936e5d613c926 (patch) | |
| tree | 3c10fe068335abcf0dd8fafc3d5fc8515737a198 | |
| parent | 89aba5759891acb859ab6d34453a8b933e38ace5 (diff) | |
iio: light: cm32181: Mark the dev_pm_ops static.
Only accessed from the local file.
Warning:
drivers/iio/light/cm32181.c:508:1: warning: symbol 'cm32181_pm_ops' was not declared. Should it be static?
Fixes: 68c1b3dd5c48 ("iio: light: cm32181: Add PM support")
Signed-off-by: Jonathan Cameron <[email protected]>
Cc: Kai-Heng Feng <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
| -rw-r--r-- | drivers/iio/light/cm32181.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/light/cm32181.c b/drivers/iio/light/cm32181.c index edbe6a3138d0..001055d09750 100644 --- a/drivers/iio/light/cm32181.c +++ b/drivers/iio/light/cm32181.c @@ -505,7 +505,7 @@ static int cm32181_resume(struct device *dev) cm32181->conf_regs[CM32181_REG_ADDR_CMD]); } -DEFINE_SIMPLE_DEV_PM_OPS(cm32181_pm_ops, cm32181_suspend, cm32181_resume); +static DEFINE_SIMPLE_DEV_PM_OPS(cm32181_pm_ops, cm32181_suspend, cm32181_resume); static const struct of_device_id cm32181_of_match[] = { { .compatible = "capella,cm3218" }, |