diff mbox

[RFT] ASoC: rt5645: Fix updating wrong register for T5645_AIF2 case

Message ID 1400325452.22102.1.camel@phoenix (mailing list archive)
State Accepted
Commit 8c32570441f92244848c5e87f5d613465650aeee
Headers show

Commit Message

Axel Lin May 17, 2014, 11:17 a.m. UTC
This looks like a copy-paste bug, fix it.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
Hi,
I don't have this h/w, so please test if this patch works.
Axel
 sound/soc/codecs/rt5645.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Oder Chiou May 19, 2014, 7:41 a.m. UTC | #1
> -----Original Message-----
> From: Axel Lin [mailto:axel.lin@ingics.com]
> Sent: Saturday, May 17, 2014 7:18 PM
> To: Mark Brown
> Cc: Oder Chiou; Bard Liao; Liam Girdwood; alsa-devel@alsa-project.org
> Subject: [PATCH RFT] ASoC: rt5645: Fix updating wrong register forT5645_AIF2
> case
> 
> This looks like a copy-paste bug, fix it.
> 
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
> Hi,
> I don't have this h/w, so please test if this patch works.
> Axel
We've tested it, and it works properly, thanks.
Mark Brown May 19, 2014, 4:23 p.m. UTC | #2
On Sat, May 17, 2014 at 07:17:32PM +0800, Axel Lin wrote:
> This looks like a copy-paste bug, fix it.

Applied, thanks.
diff mbox

Patch

diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c
index 68923ec..ab97d72 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;