diff mbox series

[V2,2/4] ASoC: codecs: Modify max_register usage error

Message ID 20231020083426.302925-3-wangweidong.a@awinic.com (mailing list archive)
State Superseded
Commit f1c406866af5dacdd9601cfa3be4873ebd801b86
Headers show
Series ASoC: codecs: Add aw88399 amplifier driver | expand

Commit Message

wangweidong.a@awinic.com Oct. 20, 2023, 8:34 a.m. UTC
From: Weidong Wang <wangweidong.a@awinic.com>

Modify the value of max_register, otherwirse
the AW88261_EFRL1_REG register will not be
accessible.

Signed-off-by: Weidong Wang <wangweidong.a@awinic.com>
---
 sound/soc/codecs/aw88261.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/sound/soc/codecs/aw88261.c b/sound/soc/codecs/aw88261.c
index a697b5006b45..0db7a0a3c179 100644
--- a/sound/soc/codecs/aw88261.c
+++ b/sound/soc/codecs/aw88261.c
@@ -20,7 +20,7 @@ 
 static const struct regmap_config aw88261_remap_config = {
 	.val_bits = 16,
 	.reg_bits = 8,
-	.max_register = AW88261_REG_MAX - 1,
+	.max_register = AW88261_REG_MAX,
 	.reg_format_endian = REGMAP_ENDIAN_LITTLE,
 	.val_format_endian = REGMAP_ENDIAN_BIG,
 };