summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-12-05 03:06:04 +0100
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-12-05 14:30:39 +0100
commitf031efe9402e4ab6a6cd86bbda54b30ed9171237 (patch)
tree9d4ddaf7c717b99b0f3e90f0a84a7c3cedece6d4 /sound/soc/codecs
parentASoC: uda1380: Convert to gpio_request_one() (diff)
downloadlinux-f031efe9402e4ab6a6cd86bbda54b30ed9171237.tar.xz
linux-f031efe9402e4ab6a6cd86bbda54b30ed9171237.zip
ASoC: Fix reg_cache_size for stac9766
reg_cache_size is supposed to be the number of elements in the register cache, not the size in bytes. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r--sound/soc/codecs/stac9766.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/stac9766.c b/sound/soc/codecs/stac9766.c
index e34969cdc0e8..cc0566c22ec1 100644
--- a/sound/soc/codecs/stac9766.c
+++ b/sound/soc/codecs/stac9766.c
@@ -379,7 +379,7 @@ static struct snd_soc_codec_driver soc_codec_dev_stac9766 = {
.remove = stac9766_codec_remove,
.suspend = stac9766_codec_suspend,
.resume = stac9766_codec_resume,
- .reg_cache_size = sizeof(stac9766_reg),
+ .reg_cache_size = ARRAY_SIZE(stac9766_reg),
.reg_word_size = sizeof(u16),
.reg_cache_step = 2,
.reg_cache_default = stac9766_reg,