Skip to content

Commit e7f289a

Browse files
mstrozekbroonie
authored andcommitted
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>
1 parent b85ea95 commit e7f289a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sound/soc/codecs/cs43130.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,7 @@ static ssize_t hpload_dc_r_show(struct device *dev,
16821682
return cs43130_show_dc(dev, buf, HP_RIGHT);
16831683
}
16841684

1685-
static u16 const cs43130_ac_freq[CS43130_AC_FREQ] = {
1685+
static const u16 cs43130_ac_freq[CS43130_AC_FREQ] = {
16861686
24,
16871687
43,
16881688
93,
@@ -2362,7 +2362,7 @@ static const struct regmap_config cs43130_regmap = {
23622362
.use_single_write = true,
23632363
};
23642364

2365-
static u16 const cs43130_dc_threshold[CS43130_DC_THRESHOLD] = {
2365+
static const u16 cs43130_dc_threshold[CS43130_DC_THRESHOLD] = {
23662366
50,
23672367
120,
23682368
};

0 commit comments

Comments
 (0)