From: Lars-Peter Clausen Date: Thu, 5 May 2011 14:59:14 +0000 (+0200) Subject: ASoC: SSM2602: Fix reg_cache_size X-Git-Tag: latest~33^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8fc63fe9412634c72676db42649f357eaac04566;p=platform%2Fupstream%2Fkernel-adaptation-pc.git ASoC: SSM2602: Fix reg_cache_size reg_cache_size is supposed to be the number of elements in the register cache, not the size in bytes. Signed-off-by: Lars-Peter Clausen Acked-by: Liam Girdwood Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/ssm2602.c b/sound/soc/codecs/ssm2602.c index 946797d..b04d280 100644 --- a/sound/soc/codecs/ssm2602.c +++ b/sound/soc/codecs/ssm2602.c @@ -602,7 +602,7 @@ static struct snd_soc_codec_driver soc_codec_dev_ssm2602 = { .read = ssm2602_read_reg_cache, .write = ssm2602_write, .set_bias_level = ssm2602_set_bias_level, - .reg_cache_size = sizeof(ssm2602_reg), + .reg_cache_size = ARRAY_SIZE(ssm2602_reg), .reg_word_size = sizeof(u16), .reg_cache_default = ssm2602_reg, };