diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-10-20 06:50:03 +0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-10-20 18:02:09 +0400 |
commit | cf0feafbc306718292dcda499bf299fc60cc8cc6 (patch) | |
tree | 3ec5ad4554958123e461c4d8efebd353cfc1c480 /sound | |
parent | 9f9619a0785f8eee42edf731fd18189faa5a7ce8 (diff) | |
download | linux-cf0feafbc306718292dcda499bf299fc60cc8cc6.tar.xz |
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.c | 2 |
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) |