aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm9712.c
diff options
context:
space:
mode:
authorDimitris Papastamos <dp@opensource.wolfsonmicro.com>2010-09-10 13:14:56 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-09-10 17:21:23 -0400
commite5eec34c68eab7af8fe10d070cb0c948f73a8464 (patch)
treebcfa506768bd8bbaa0302bb123234e7ba64a3f22 /sound/soc/codecs/wm9712.c
parentc7bad06f1305be2cfa68ad58dc3391261162db4e (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/wm9712.c')
-rw-r--r--sound/soc/codecs/wm9712.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm9712.c b/sound/soc/codecs/wm9712.c
index cebeb93c10c7..d2f224d62744 100644
--- a/sound/soc/codecs/wm9712.c
+++ b/sound/soc/codecs/wm9712.c
@@ -674,7 +674,7 @@ static struct snd_soc_codec_driver soc_codec_dev_wm9712 = {
674 .read = ac97_read, 674 .read = ac97_read,
675 .write = ac97_write, 675 .write = ac97_write,
676 .set_bias_level = wm9712_set_bias_level, 676 .set_bias_level = wm9712_set_bias_level,
677 .reg_cache_size = sizeof(wm9712_reg), 677 .reg_cache_size = ARRAY_SIZE(wm9712_reg),
678 .reg_word_size = sizeof(u16), 678 .reg_word_size = sizeof(u16),
679 .reg_cache_step = 2, 679 .reg_cache_step = 2,
680 .reg_cache_default = wm9712_reg, 680 .reg_cache_default = wm9712_reg,