aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorsunliming <sunliming@kylinos.cn>2022-08-15 09:29:30 +0800
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2022-08-21 18:24:16 +0100
commit0096fc879358ad6b82ee7e790c07b118c515c980 (patch)
tree556b959ec73f726002ea1ea9ddb0e992f7df6334
parentiio: ad7292: Prevent regulator double disable (diff)
downloadwireguard-linux-0096fc879358ad6b82ee7e790c07b118c515c980.tar.xz
wireguard-linux-0096fc879358ad6b82ee7e790c07b118c515c980.zip
iio: light: cm32181: make cm32181_pm_ops static
This symbol is not used outside of cm32181.c, so marks it static. Fixes the following sparse warnings: >> drivers/iio/light/cm32181.c:508:1: sparse: sparse: symbol 'cm32181_pm_ops' was not declared. Should it be static? Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: sunliming <sunliming@kylinos.cn> Link: https://lore.kernel.org/r/20220815012930.150078-1-sunliming@kylinos.cn Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
-rw-r--r--drivers/iio/light/cm32181.c2
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" },