aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-10-20 10:50:03 +0800
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-10-20 15:02:09 +0100
commitcf0feafbc306718292dcda499bf299fc60cc8cc6 (patch)
tree3ec5ad4554958123e461c4d8efebd353cfc1c480 /sound
parentASoC: wm9081: Fix setting soft VMID ramp enable with VMID 2*240k (diff)
downloadlinux-dev-cf0feafbc306718292dcda499bf299fc60cc8cc6.tar.xz
linux-dev-cf0feafbc306718292dcda499bf299fc60cc8cc6.zip
ASoC: Fix reg_word_size for ak4104
According to the register map in datasheet, the registers are 8 bit. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/ak4104.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ak4104.c b/sound/soc/codecs/ak4104.c
index cbf0b6d400b8..d3b29dce6ed7 100644
--- a/sound/soc/codecs/ak4104.c
+++ b/sound/soc/codecs/ak4104.c
@@ -247,7 +247,7 @@ static struct snd_soc_codec_driver soc_codec_device_ak4104 = {
.probe = ak4104_probe,
.remove = ak4104_remove,
.reg_cache_size = AK4104_NUM_REGS,
- .reg_word_size = sizeof(u16),
+ .reg_word_size = sizeof(u8),
};
static int ak4104_spi_probe(struct spi_device *spi)