diff options
author | Maciej Strozek <[email protected]> | 2023-11-17 14:13:39 +0000 |
---|---|---|
committer | Mark Brown <[email protected]> | 2023-11-17 16:39:43 +0000 |
commit | aa7e8e5e4011571022dc06e4d7a2f108feb53d1a (patch) | |
tree | 4b21e675bb4fbd38d2f07df7dc6de0274dbfeba2 | |
parent | e7f289a59e76a5890a57bc27b198f69f175f75d9 (diff) |
ASoC: cs43130: Fix incorrect frame delay configuration
Signed-off-by: Maciej Strozek <[email protected]>
Acked-by: Charles Keepax <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/codecs/cs43130.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs43130.c b/sound/soc/codecs/cs43130.c index 20f06679b8f7..d8ec325b9cc9 100644 --- a/sound/soc/codecs/cs43130.c +++ b/sound/soc/codecs/cs43130.c @@ -578,7 +578,7 @@ static int cs43130_set_sp_fmt(int dai_id, unsigned int bitwidth_sclk, break; case SND_SOC_DAIFMT_LEFT_J: hi_size = bitwidth_sclk; - frm_delay = 2; + frm_delay = 0; frm_phase = 1; break; case SND_SOC_DAIFMT_DSP_A: |