diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-02-05 15:54:36 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-07 07:19:02 -0500 |
commit | b57efda1f0372d6107ced5a255384be9fd449260 (patch) | |
tree | fab5a0f6afc837eed427f973b1532e556e6aa705 /sound | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) |
ASoC: wm8988: 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: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8988.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sound/soc/codecs/wm8988.c b/sound/soc/codecs/wm8988.c index a55e1c2c382e..c6e4aba25b77 100644 --- a/sound/soc/codecs/wm8988.c +++ b/sound/soc/codecs/wm8988.c | |||
@@ -116,7 +116,7 @@ static bool wm8988_writeable(struct device *dev, unsigned int reg) | |||
116 | struct wm8988_priv { | 116 | struct wm8988_priv { |
117 | struct regmap *regmap; | 117 | struct regmap *regmap; |
118 | unsigned int sysclk; | 118 | unsigned int sysclk; |
119 | struct snd_pcm_hw_constraint_list *sysclk_constraints; | 119 | const struct snd_pcm_hw_constraint_list *sysclk_constraints; |
120 | }; | 120 | }; |
121 | 121 | ||
122 | #define wm8988_reset(c) snd_soc_write(c, WM8988_RESET, 0) | 122 | #define wm8988_reset(c) snd_soc_write(c, WM8988_RESET, 0) |
@@ -521,30 +521,30 @@ static inline int get_coeff(int mclk, int rate) | |||
521 | 521 | ||
522 | /* The set of rates we can generate from the above for each SYSCLK */ | 522 | /* The set of rates we can generate from the above for each SYSCLK */ |
523 | 523 | ||
524 | static unsigned int rates_12288[] = { | 524 | static const unsigned int rates_12288[] = { |
525 | 8000, 12000, 16000, 24000, 24000, 32000, 48000, 96000, | 525 | 8000, 12000, 16000, 24000, 24000, 32000, 48000, 96000, |
526 | }; | 526 | }; |
527 | 527 | ||
528 | static struct snd_pcm_hw_constraint_list constraints_12288 = { | 528 | static const struct snd_pcm_hw_constraint_list constraints_12288 = { |
529 | .count = ARRAY_SIZE(rates_12288), | 529 | .count = ARRAY_SIZE(rates_12288), |
530 | .list = rates_12288, | 530 | .list = rates_12288, |
531 | }; | 531 | }; |
532 | 532 | ||
533 | static unsigned int rates_112896[] = { | 533 | static const unsigned int rates_112896[] = { |
534 | 8000, 11025, 22050, 44100, | 534 | 8000, 11025, 22050, 44100, |
535 | }; | 535 | }; |
536 | 536 | ||
537 | static struct snd_pcm_hw_constraint_list constraints_112896 = { | 537 | static const struct snd_pcm_hw_constraint_list constraints_112896 = { |
538 | .count = ARRAY_SIZE(rates_112896), | 538 | .count = ARRAY_SIZE(rates_112896), |
539 | .list = rates_112896, | 539 | .list = rates_112896, |
540 | }; | 540 | }; |
541 | 541 | ||
542 | static unsigned int rates_12[] = { | 542 | static const unsigned int rates_12[] = { |
543 | 8000, 11025, 12000, 16000, 22050, 2400, 32000, 41100, 48000, | 543 | 8000, 11025, 12000, 16000, 22050, 2400, 32000, 41100, 48000, |
544 | 48000, 88235, 96000, | 544 | 48000, 88235, 96000, |
545 | }; | 545 | }; |
546 | 546 | ||
547 | static struct snd_pcm_hw_constraint_list constraints_12 = { | 547 | static const struct snd_pcm_hw_constraint_list constraints_12 = { |
548 | .count = ARRAY_SIZE(rates_12), | 548 | .count = ARRAY_SIZE(rates_12), |
549 | .list = rates_12, | 549 | .list = rates_12, |
550 | }; | 550 | }; |