Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf0feafb authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

ASoC: Fix reg_word_size for ak4104



According to the register map in datasheet, the registers are 8 bit.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 9f9619a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)