diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2008-06-11 08:47:06 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-06-13 10:47:42 -0400 |
commit | d751b233bb8568f1de1ccbe3824ca69090326251 (patch) | |
tree | 778dfb8c866ce10a27df33bbb639f93021d64c0c /sound/soc/codecs/wm8753.c | |
parent | 9f240a558f94bea839e14c46c8fccf93bdd35ef6 (diff) |
ALSA: ASoC: Fix register cache sizes for Wolfson codecs
The register cache size is used by the codec_reg sysfs file which works in
terms of the register cache access functions rather than in terms of raw
access to the cache so the size specified needs to be in terms of the
number of elements.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
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 c32e6326be6c..285c5eaefe02 100644 --- a/sound/soc/codecs/wm8753.c +++ b/sound/soc/codecs/wm8753.c | |||
@@ -1557,7 +1557,7 @@ static int wm8753_init(struct snd_soc_device *socdev) | |||
1557 | codec->set_bias_level = wm8753_set_bias_level; | 1557 | codec->set_bias_level = wm8753_set_bias_level; |
1558 | codec->dai = wm8753_dai; | 1558 | codec->dai = wm8753_dai; |
1559 | codec->num_dai = 2; | 1559 | codec->num_dai = 2; |
1560 | codec->reg_cache_size = sizeof(wm8753_reg); | 1560 | codec->reg_cache_size = ARRAY_SIZE(wm8753_reg); |
1561 | codec->reg_cache = kmemdup(wm8753_reg, sizeof(wm8753_reg), GFP_KERNEL); | 1561 | codec->reg_cache = kmemdup(wm8753_reg, sizeof(wm8753_reg), GFP_KERNEL); |
1562 | 1562 | ||
1563 | if (codec->reg_cache == NULL) | 1563 | if (codec->reg_cache == NULL) |