Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f35d77a3 authored by Maciej Strozek's avatar Maciej Strozek Committed by Greg Kroah-Hartman
Browse files

ASoC: cs43130: Fix the position of const qualifier

parent e22bd1d9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1686,7 +1686,7 @@ static ssize_t cs43130_show_dc_r(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,
@@ -2365,7 +2365,7 @@ static const struct regmap_config cs43130_regmap = {
	.use_single_rw		= true, /* needed for regcache_sync */
};

static u16 const cs43130_dc_threshold[CS43130_DC_THRESHOLD] = {
static const u16 cs43130_dc_threshold[CS43130_DC_THRESHOLD] = {
	50,
	120,
};