Commit f75ac2d9 authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Mark Brown

ASoC: ssm2602: Constify rate constraints

The rate constraints in this driver are shared between all device instances. It
should not be (and is not) modified at runtime, so make them const.
Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 38dbfb59
...@@ -52,7 +52,7 @@ enum ssm2602_type { ...@@ -52,7 +52,7 @@ enum ssm2602_type {
/* codec private data */ /* codec private data */
struct ssm2602_priv { struct ssm2602_priv {
unsigned int sysclk; unsigned int sysclk;
struct snd_pcm_hw_constraint_list *sysclk_constraints; const struct snd_pcm_hw_constraint_list *sysclk_constraints;
struct regmap *regmap; struct regmap *regmap;
...@@ -197,7 +197,7 @@ static const unsigned int ssm2602_rates_12288000[] = { ...@@ -197,7 +197,7 @@ static const unsigned int ssm2602_rates_12288000[] = {
8000, 16000, 32000, 48000, 96000, 8000, 16000, 32000, 48000, 96000,
}; };
static struct snd_pcm_hw_constraint_list ssm2602_constraints_12288000 = { static const struct snd_pcm_hw_constraint_list ssm2602_constraints_12288000 = {
.list = ssm2602_rates_12288000, .list = ssm2602_rates_12288000,
.count = ARRAY_SIZE(ssm2602_rates_12288000), .count = ARRAY_SIZE(ssm2602_rates_12288000),
}; };
...@@ -206,7 +206,7 @@ static const unsigned int ssm2602_rates_11289600[] = { ...@@ -206,7 +206,7 @@ static const unsigned int ssm2602_rates_11289600[] = {
8000, 44100, 88200, 8000, 44100, 88200,
}; };
static struct snd_pcm_hw_constraint_list ssm2602_constraints_11289600 = { static const struct snd_pcm_hw_constraint_list ssm2602_constraints_11289600 = {
.list = ssm2602_rates_11289600, .list = ssm2602_rates_11289600,
.count = ARRAY_SIZE(ssm2602_rates_11289600), .count = ARRAY_SIZE(ssm2602_rates_11289600),
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment