From: Axel Lin Date: Sat, 17 May 2014 11:17:32 +0000 (+0800) Subject: ASoC: rt5645: Fix updating wrong register for T5645_AIF2 case X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8c32570441f92244848c5e87f5d613465650aeee;p=linux-beck.git ASoC: rt5645: Fix updating wrong register for T5645_AIF2 case This looks like a copy-paste bug, fix it. Signed-off-by: Axel Lin Tested-by: Oder Chiou Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 68923eca7d9c..ab97d722e15d 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -1932,8 +1932,8 @@ static int rt5645_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt) RT5645_I2S_MS_MASK | RT5645_I2S_BP_MASK | RT5645_I2S_DF_MASK, reg_val); break; - case RT5645_AIF2: - snd_soc_update_bits(codec, RT5645_I2S1_SDP, + case RT5645_AIF2: + snd_soc_update_bits(codec, RT5645_I2S2_SDP, RT5645_I2S_MS_MASK | RT5645_I2S_BP_MASK | RT5645_I2S_DF_MASK, reg_val); break;