ASoC: sdm660-cdc: Change val_bits to 8 from 32 in digital cdc regmap
ADIE RTAC register parsing logic expects the registers value to be 1 byte for all the codecs.Change the val_bits in regmap config structure of the digital codec to 8 bits from 32 bits. CRs-fixed: 2014589 Change-Id: Ib7a022c420cbd27aeac75ac061f96f8a1f39bd2e Signed-off-by: Aditya Bavanari <abavanar@codeaurora.org>
This commit is contained in:
parent
c1ef16be6d
commit
5a9ebdbc6a
1 changed files with 1 additions and 1 deletions
|
@ -2016,7 +2016,7 @@ static struct snd_soc_codec_driver soc_msm_dig_codec = {
|
|||
const struct regmap_config msm_digital_regmap_config = {
|
||||
.reg_bits = 32,
|
||||
.reg_stride = 4,
|
||||
.val_bits = 32,
|
||||
.val_bits = 8,
|
||||
.lock = enable_digital_callback,
|
||||
.unlock = disable_digital_callback,
|
||||
.cache_type = REGCACHE_FLAT,
|
||||
|
|
Loading…
Add table
Reference in a new issue