diff options
author | Dimitris Papastamos <dp@opensource.wolfsonmicro.com> | 2010-09-10 13:14:56 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-09-10 17:21:23 -0400 |
commit | e5eec34c68eab7af8fe10d070cb0c948f73a8464 (patch) | |
tree | bcfa506768bd8bbaa0302bb123234e7ba64a3f22 /sound/soc/codecs/wm8753.c | |
parent | c7bad06f1305be2cfa68ad58dc3391261162db4e (diff) |
ASoC: Fix incorrect register cache size configuration
The reg_cache_size is the number of elements in the register cache,
not the size of the cache itself. This is not a problem if the size
of each element of the cache is 1 byte but it matters in any other
case.
Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/wm8753.c')
-rw-r--r-- | sound/soc/codecs/wm8753.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8753.c b/sound/soc/codecs/wm8753.c index 4a945d3edf25..0b0e3b3ebbbb 100644 --- a/sound/soc/codecs/wm8753.c +++ b/sound/soc/codecs/wm8753.c | |||
@@ -1617,7 +1617,7 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8753 = { | |||
1617 | .suspend = wm8753_suspend, | 1617 | .suspend = wm8753_suspend, |
1618 | .resume = wm8753_resume, | 1618 | .resume = wm8753_resume, |
1619 | .set_bias_level = wm8753_set_bias_level, | 1619 | .set_bias_level = wm8753_set_bias_level, |
1620 | .reg_cache_size = sizeof(wm8753_reg), | 1620 | .reg_cache_size = ARRAY_SIZE(wm8753_reg), |
1621 | .reg_word_size = sizeof(u16), | 1621 | .reg_word_size = sizeof(u16), |
1622 | .reg_cache_default = wm8753_reg, | 1622 | .reg_cache_default = wm8753_reg, |
1623 | }; | 1623 | }; |