aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/davinci/davinci-mcasp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c
index d4d640004bed..2b6722024fbd 100644
--- a/sound/soc/davinci/davinci-mcasp.c
+++ b/sound/soc/davinci/davinci-mcasp.c
@@ -302,6 +302,13 @@ static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai,
302 /* FS need to be inverted */ 302 /* FS need to be inverted */
303 inv_fs = true; 303 inv_fs = true;
304 break; 304 break;
305 case SND_SOC_DAIFMT_LEFT_J:
306 /* configure a full-word SYNC pulse (LRCLK) */
307 mcasp_set_bits(mcasp, DAVINCI_MCASP_TXFMCTL_REG, FSXDUR);
308 mcasp_set_bits(mcasp, DAVINCI_MCASP_RXFMCTL_REG, FSRDUR);
309 /* No delay after FS */
310 data_delay = 0;
311 break;
305 default: 312 default:
306 ret = -EINVAL; 313 ret = -EINVAL;
307 goto out; 314 goto out;