diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2023-08-01 16:03:54 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-08-01 18:02:22 +0300 |
commit | 39b5ba6cb56962d2ac83e4dd89f68538f7861efe (patch) | |
tree | b42c8d0a6eb11c72adb58206143b350032be652b /drivers/regulator | |
parent | 9349f564f90d12438d92b1ad98bdf8b1a69d9005 (diff) | |
download | linux-39b5ba6cb56962d2ac83e4dd89f68538f7861efe.tar.xz |
regulator: max77857: change some variables to static
max77857_regmap_config and max77857_driver are only used
in max77857-regulator.c now, change them to static.
Fixes: af71cccadeced ("regulator: max77857: Add ADI MAX77857/59/MAX77831 Regulator Support")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20230801130354.552243-1-yangyingliang@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/max77857-regulator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/max77857-regulator.c b/drivers/regulator/max77857-regulator.c index 58f825d8d2b0..f2141b5be780 100644 --- a/drivers/regulator/max77857-regulator.c +++ b/drivers/regulator/max77857-regulator.c @@ -67,7 +67,7 @@ static bool max77857_volatile_reg(struct device *dev, unsigned int reg) } } -struct regmap_config max77857_regmap_config = { +static struct regmap_config max77857_regmap_config = { .reg_bits = 8, .val_bits = 8, .cache_type = REGCACHE_MAPLE, @@ -443,7 +443,7 @@ static const struct of_device_id max77857_of_id[] = { }; MODULE_DEVICE_TABLE(of, max77857_of_id); -struct i2c_driver max77857_driver = { +static struct i2c_driver max77857_driver = { .driver = { .name = "max77857", .of_match_table = max77857_of_id, |