From 5c69f11ce85d4a8ea985a6d266574577e94c6506 Mon Sep 17 00:00:00 2001 From: Yang Yingliang Date: Wed, 17 Aug 2022 17:15:19 +0800 Subject: [PATCH] ASoC: codecs: es8326: change es8326_regmap_config to static es8326_regmap_config is only used in es8326.c now, change it to static. Signed-off-by: Yang Yingliang Link: https://lore.kernel.org/r/20220817091519.2487385-1-yangyingliang@huawei.com Signed-off-by: Mark Brown --- sound/soc/codecs/es8326.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/es8326.c b/sound/soc/codecs/es8326.c index 975302b2a61db..87c1cc16592bb 100755 --- a/sound/soc/codecs/es8326.c +++ b/sound/soc/codecs/es8326.c @@ -207,7 +207,7 @@ static const struct regmap_access_table es8326_volatile_table = { .n_yes_ranges = ARRAY_SIZE(es8326_volatile_ranges), }; -const struct regmap_config es8326_regmap_config = { +static const struct regmap_config es8326_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = 0xff, -- 2.30.2