diff options
author | Andrew F. Davis <afd@ti.com> | 2017-11-29 15:32:46 -0600 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-30 12:31:44 +0000 |
commit | 737e0b7b67bdfe24090fab2852044bb283282fc5 (patch) | |
tree | 74a454cb5069ddf9213a462361e6cb344c2c442d | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) | |
download | linux-737e0b7b67bdfe24090fab2852044bb283282fc5.tar.gz linux-737e0b7b67bdfe24090fab2852044bb283282fc5.tar.bz2 linux-737e0b7b67bdfe24090fab2852044bb283282fc5.zip |
ASoC: tlv320aic31xx: Fix GPIO1 register definition
GPIO1 control register is number 51, fix this here.
Fixes: bafcbfe429eb ("ASoC: tlv320aic31xx: Make the register values human readable")
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
-rw-r--r-- | sound/soc/codecs/tlv320aic31xx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320aic31xx.h b/sound/soc/codecs/tlv320aic31xx.h index 730fb2058869..1ff3edb7bbb6 100644 --- a/sound/soc/codecs/tlv320aic31xx.h +++ b/sound/soc/codecs/tlv320aic31xx.h @@ -116,7 +116,7 @@ struct aic31xx_pdata { /* INT2 interrupt control */ #define AIC31XX_INT2CTRL AIC31XX_REG(0, 49) /* GPIO1 control */ -#define AIC31XX_GPIO1 AIC31XX_REG(0, 50) +#define AIC31XX_GPIO1 AIC31XX_REG(0, 51) #define AIC31XX_DACPRB AIC31XX_REG(0, 60) /* ADC Instruction Set Register */ |