diff options
author | Bard Liao <bardliao@realtek.com> | 2015-08-03 06:17:39 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-08-03 18:02:45 +0200 |
commit | a094935e4ebdf5c22c45b8aeeb2d88e9e8c53dbf (patch) | |
tree | 4a33ab748138135c12c53b3db63b4b1769879452 /sound/soc/codecs/rt5645.c | |
parent | ASoC: rt5645: Check if codec is initialized in workqueue handler (diff) | |
download | linux-a094935e4ebdf5c22c45b8aeeb2d88e9e8c53dbf.tar.xz linux-a094935e4ebdf5c22c45b8aeeb2d88e9e8c53dbf.zip |
ASoC: rt5645: Fix lost pin setting for DMIC1
I2S2_DAC pin can be used for I2S or GPIO. We should set it as GPIO
if we use GPIO5 as DMIC1 data pin.
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rt5645.c')
-rw-r--r-- | sound/soc/codecs/rt5645.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index e9cc3aae5366..961bd7e5877e 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -3341,6 +3341,8 @@ static int rt5645_i2c_probe(struct i2c_client *i2c, break; case RT5645_DMIC_DATA_GPIO5: + regmap_update_bits(rt5645->regmap, RT5645_GPIO_CTRL1, + RT5645_I2S2_DAC_PIN_MASK, RT5645_I2S2_DAC_PIN_GPIO); regmap_update_bits(rt5645->regmap, RT5645_DMIC_CTRL1, RT5645_DMIC_1_DP_MASK, RT5645_DMIC_1_DP_GPIO5); regmap_update_bits(rt5645->regmap, RT5645_GPIO_CTRL1, |