]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
regulator: max77857: Make max77857_id static
authorYue Haibing <yuehaibing@huawei.com>
Thu, 1 Aug 2024 11:45:36 +0000 (19:45 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 1 Aug 2024 11:50:10 +0000 (12:50 +0100)
Fix sparse warning:
drivers/regulator/max77857-regulator.c:430:28: warning: symbol 'max77857_id' was not declared. Should it be static?

max77857_id is not used outside the source file. Make it static.

Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
Link: https://patch.msgid.link/20240801114536.472796-1-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/max77857-regulator.c

index bc28dc8503a8705fa332ea68c1e545d396b8103d..1216cc3a6f72bbe91d28891e6ea93a61365dfd0c 100644 (file)
@@ -427,7 +427,7 @@ static int max77857_probe(struct i2c_client *client)
        return 0;
 }
 
-const struct i2c_device_id max77857_id[] = {
+static const struct i2c_device_id max77857_id[] = {
        { "max77831", ID_MAX77831 },
        { "max77857", ID_MAX77857 },
        { "max77859", ID_MAX77859 },