diff options
author | Maciej Strozek <mstrozek@opensource.cirrus.com> | 2023-11-17 15:13:38 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-11-17 17:39:42 +0100 |
commit | e7f289a59e76a5890a57bc27b198f69f175f75d9 (patch) | |
tree | af81bc30c3e8f59766c40f174063edda666ade85 /sound/soc/codecs/cs43130.c | |
parent | Linux 6.7-rc1 (diff) | |
download | linux-e7f289a59e76a5890a57bc27b198f69f175f75d9.tar.xz linux-e7f289a59e76a5890a57bc27b198f69f175f75d9.zip |
ASoC: cs43130: Fix the position of const qualifier
Signed-off-by: Maciej Strozek <mstrozek@opensource.cirrus.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20231117141344.64320-2-mstrozek@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/cs43130.c')
-rw-r--r-- | sound/soc/codecs/cs43130.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/cs43130.c b/sound/soc/codecs/cs43130.c index 0b40fdfb1825..20f06679b8f7 100644 --- a/sound/soc/codecs/cs43130.c +++ b/sound/soc/codecs/cs43130.c @@ -1682,7 +1682,7 @@ static ssize_t hpload_dc_r_show(struct device *dev, return cs43130_show_dc(dev, buf, HP_RIGHT); } -static u16 const cs43130_ac_freq[CS43130_AC_FREQ] = { +static const u16 cs43130_ac_freq[CS43130_AC_FREQ] = { 24, 43, 93, @@ -2362,7 +2362,7 @@ static const struct regmap_config cs43130_regmap = { .use_single_write = true, }; -static u16 const cs43130_dc_threshold[CS43130_DC_THRESHOLD] = { +static const u16 cs43130_dc_threshold[CS43130_DC_THRESHOLD] = { 50, 120, }; |