projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68020db
)
ASoC: Fix reg_cache_size for stac9766
author
Axel Lin
<axel.lin@gmail.com>
Mon, 5 Dec 2011 02:06:04 +0000
(10:06 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Mon, 5 Dec 2011 13:30:39 +0000
(13:30 +0000)
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>
sound/soc/codecs/stac9766.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/codecs/stac9766.c
b/sound/soc/codecs/stac9766.c
index e34969cdc0e8d0db0a2e90b3839371b781e6f617..cc0566c22ec12ecfcf3f67d486b6330fea448f47 100644
(file)
--- 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,