diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-04-21 06:19:49 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-05-07 13:11:51 +0200 |
commit | 5023281b1870fdc99bddf95a7bc00b801801d13e (patch) | |
tree | cc3096e6ae64196902c19e46f6d20088a2cbbcac /sound/soc/codecs/rt5645.c | |
parent | ASoC: rt5645: Add ACPI match ID (diff) | |
download | linux-5023281b1870fdc99bddf95a7bc00b801801d13e.tar.xz linux-5023281b1870fdc99bddf95a7bc00b801801d13e.zip |
ASoC: rt5645: Fix mask for setting RT5645_DMIC_2_DP_GPIO12 bit
Current code uses wrong mask when setting RT5645_DMIC_2_DP_GPIO12 bit,
fix it.
Signed-off-by: Axel Lin <axel.lin@ingics.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, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 61ca49fbf1ec..be4d741c45ba 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -2780,7 +2780,7 @@ static int rt5645_i2c_probe(struct i2c_client *i2c, case RT5645_DMIC_DATA_GPIO12: regmap_update_bits(rt5645->regmap, RT5645_DMIC_CTRL1, - RT5645_DMIC_1_DP_MASK, RT5645_DMIC_2_DP_GPIO12); + RT5645_DMIC_2_DP_MASK, RT5645_DMIC_2_DP_GPIO12); regmap_update_bits(rt5645->regmap, RT5645_GPIO_CTRL1, RT5645_GP12_PIN_MASK, RT5645_GP12_PIN_DMIC2_SDA); |