[alsa-devel] [PATCH] ASoC: soc-pcm: fix incorrect channels and sample_bits wiping off
This patch wipes off the corresponding channels and sample_bits for codec_dai.
Signed-off-by: Nicolin Chen b42378@freescale.com --- @Mark Brown Sir, I find the previous symmetry patch hasn't been merged into for-next. So are you willing to apply this one or let me refine the previous PATCH and resend that one?
sound/soc/soc-pcm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index e1c5a00..60d9cfb 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -452,8 +452,8 @@ static int soc_pcm_close(struct snd_pcm_substream *substream)
if (!codec_dai->active) { codec_dai->rate = 0; - cpu_dai->channels = 0; - cpu_dai->sample_bits = 0; + codec_dai->channels = 0; + codec_dai->sample_bits = 0; }
/* Muting the DAC suppresses artifacts caused during digital
On Tue, Nov 19, 2013 at 05:57:54PM +0800, Nicolin Chen wrote:
Sir, I find the previous symmetry patch hasn't been merged into for-next. So are you willing to apply this one or let me refine the previous PATCH and resend that one?
I applied this but squashed it down into the previous patch which is probably what the resend would've done.
On Tue, Nov 19, 2013 at 07:11:19PM +0000, Mark Brown wrote:
On Tue, Nov 19, 2013 at 05:57:54PM +0800, Nicolin Chen wrote:
Sir, I find the previous symmetry patch hasn't been merged into for-next. So are you willing to apply this one or let me refine the previous PATCH and resend that one?
I applied this but squashed it down into the previous patch which is probably what the resend would've done.
Exactly. Thank you, sir. Nicolin Chen
participants (2)
-
Mark Brown
-
Nicolin Chen