From: Axel Lin Date: Sat, 20 Feb 2016 02:54:11 +0000 (+0800) Subject: ASoC: max9867: Constify max9867_reg and max9867_regmap X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=250a99e70bf8628397901e10ad99a281dfc489d5;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ASoC: max9867: Constify max9867_reg and max9867_regmap Signed-off-by: Axel Lin Acked-by: anish kumar Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c index 70b54069ad2a..ab7a94db8db7 100755 --- a/sound/soc/codecs/max9867.c +++ b/sound/soc/codecs/max9867.c @@ -436,7 +436,7 @@ static bool max9867_volatile_register(struct device *dev, unsigned int reg) } } -static struct reg_default max9867_reg[] = { +static const struct reg_default max9867_reg[] = { { 0x04, 0x00 }, { 0x05, 0x00 }, { 0x06, 0x00 }, @@ -459,7 +459,7 @@ static struct reg_default max9867_reg[] = { { 0x17, 0x00 }, }; -static struct regmap_config max9867_regmap = { +static const struct regmap_config max9867_regmap = { .reg_bits = 8, .val_bits = 8, .max_register = MAX9867_REVISION,