Message ID | 1429589989.12465.1.camel@ingics.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 53f9b3baa937e0cbdd75ea11b3c824462e4359b2 |
Headers | show |
On Tue, Apr 21, 2015 at 12:19:49PM +0800, Axel Lin wrote: > Current code uses wrong mask when setting RT5645_DMIC_2_DP_GPIO12 bit, > fix it. Applied, thanks.
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 69528ae..a249f65 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -2770,7 +2770,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);
Current code uses wrong mask when setting RT5645_DMIC_2_DP_GPIO12 bit, fix it. Signed-off-by: Axel Lin <axel.lin@ingics.com> --- Hi Bard, I don't have the h/w to test, so please review and test this patch. Thanks, Axel sound/soc/codecs/rt5645.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)