diff options
author | Dimitris Papastamos <dp@opensource.wolfsonmicro.com> | 2010-09-10 18:14:56 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-09-10 22:21:23 +0100 |
commit | e5eec34c68eab7af8fe10d070cb0c948f73a8464 (patch) | |
tree | bcfa506768bd8bbaa0302bb123234e7ba64a3f22 /sound/soc/codecs/wm9713.c | |
parent | c7bad06f1305be2cfa68ad58dc3391261162db4e (diff) | |
download | talos-obmc-linux-e5eec34c68eab7af8fe10d070cb0c948f73a8464.tar.gz talos-obmc-linux-e5eec34c68eab7af8fe10d070cb0c948f73a8464.zip |
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/wm9713.c')
-rw-r--r-- | sound/soc/codecs/wm9713.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm9713.c b/sound/soc/codecs/wm9713.c index 463917e762b5..7da13b07a53d 100644 --- a/sound/soc/codecs/wm9713.c +++ b/sound/soc/codecs/wm9713.c @@ -1257,7 +1257,7 @@ static struct snd_soc_codec_driver soc_codec_dev_wm9713 = { .read = ac97_read, .write = ac97_write, .set_bias_level = wm9713_set_bias_level, - .reg_cache_size = sizeof(wm9713_reg), + .reg_cache_size = ARRAY_SIZE(wm9713_reg), .reg_word_size = sizeof(u16), .reg_cache_step = 2, .reg_cache_default = wm9713_reg, |