iio: light: cm32181: make cm32181_pm_ops static
authorsunliming <sunliming@kylinos.cn>
Mon, 15 Aug 2022 01:29:30 +0000 (09:29 +0800)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 21 Aug 2022 17:24:16 +0000 (18:24 +0100)
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>
drivers/iio/light/cm32181.c

index edbe6a3138d0b927cc5091eec57890c488c8fbf0..001055d097509e688f7ce330ff2b3e7a24810269 100644 (file)
@@ -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" },