diff mbox series

ASoC: SMA1303: Change the value for right output

Message ID 20230217004403.10220-1-kiseok.jo@irondevice.com
State Accepted
Commit 51c58a1ebc047acc4ac2a61a5f215c7a638a685b
Headers show
Series ASoC: SMA1303: Change the value for right output | expand

Commit Message

Kiseok Jo Feb. 17, 2023, 12:44 a.m. UTC
This device can output mono, left or right.
LR data should be swapped to output right data.

Signed-off-by: Kiseok Jo <kiseok.jo@irondevice.com>
---
 sound/soc/codecs/sma1303.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: ab2932214588224b11102e40ba2e78a6f099b8ef
diff mbox series

Patch

diff --git a/sound/soc/codecs/sma1303.c b/sound/soc/codecs/sma1303.c
index 727c01facf52..fa4b0a60f8a9 100644
--- a/sound/soc/codecs/sma1303.c
+++ b/sound/soc/codecs/sma1303.c
@@ -569,7 +569,7 @@  static int sma1303_aif_in_event(struct snd_soc_dapm_widget *w,
 			ret += sma1303_regmap_update_bits(sma1303,
 					SMA1303_11_SYSTEM_CTRL2,
 					SMA1303_LR_DATA_SW_MASK,
-					SMA1303_LR_DATA_SW_NORMAL,
+					SMA1303_LR_DATA_SW_SWAP,
 					&temp);
 			if (temp == true)
 				change = true;