From 5121aa0ad3ba22bde02a6024b30de1b36b77b24d Mon Sep 17 00:00:00 2001 From: Shengjiu Wang Date: Thu, 16 Jun 2016 14:35:52 +0800 Subject: [PATCH] MLK-12907: ASoC: imx_mqs: mqs can't be recorder mqs can't be used as recorder, the capture property need to be zero. Signed-off-by: Shengjiu Wang --- sound/soc/fsl/imx-mqs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sound/soc/fsl/imx-mqs.c b/sound/soc/fsl/imx-mqs.c index a3959d44d339..a09a52a7823e 100644 --- a/sound/soc/fsl/imx-mqs.c +++ b/sound/soc/fsl/imx-mqs.c @@ -1,5 +1,5 @@ /* - * Copyright 2012, 2014-2015 Freescale Semiconductor, Inc. + * Copyright 2012, 2014-2016 Freescale Semiconductor, Inc. * Copyright 2012 Linaro Ltd. * * The code contained herein is licensed under the GNU General Public @@ -119,7 +119,7 @@ static struct snd_soc_dai_link imx_mqs_dai[] = { .dynamic = 1, .ignore_pmdown_time = 1, .dpcm_playback = 1, - .dpcm_capture = 1, + .dpcm_capture = 0, }, { .name = "HiFi-ASRC-BE", @@ -131,7 +131,7 @@ static struct snd_soc_dai_link imx_mqs_dai[] = { .no_pcm = 1, .ignore_pmdown_time = 1, .dpcm_playback = 1, - .dpcm_capture = 1, + .dpcm_capture = 0, .ops = &imx_mqs_ops_be, .be_hw_params_fixup = be_hw_params_fixup, }, -- 2.17.1