ASoC: dpcm: Add checks of playback/capture before dpcm_get_be
authorKoro Chen <koro.chen@mediatek.com>
Mon, 6 Jul 2015 02:02:10 +0000 (10:02 +0800)
committerMark Brown <broonie@kernel.org>
Tue, 7 Jul 2015 13:56:15 +0000 (14:56 +0100)
commitc5b8540dca22526517f4d96857678466613467d1
tree2d93d6ad78a31fd471ee957a0da6b8912371c0b3
parentd770e558e21961ad6cfdf0ff7df0eb5d7d4f0754
ASoC: dpcm: Add checks of playback/capture before dpcm_get_be

In dpcm_get_be(), it looks for a BE rtd that has the DAI widget
according to current stream type. Only playback_widgets are searched
in the case of playback stream and vice versa. However, the DAI widget
itself can be playback or capture.

If the DAI widget is capture, but current stream type is playback,
dpcm_get_be() will always fail to find a rtd, print error messages,
and continue to the next DAI widget in list. We can just skip this
DAI widget to further suppress error messages. This happens in a
special case when 2 codecs are inter-connected, and the 1st codec's
"capture" widget is used to send data to the 2nd codec during "playback":

mtk-rt5650-rt5676 sound: ASoC: can't get playback BE for Sub AIF2 Capture
rt5650_rt5676 Playback: ASoC: no BE found for Sub AIF2 Capture

Add checks to continue to next DAI widget if current DAI widget's
direction does not match the stream type.

Signed-off-by: Koro Chen <koro.chen@mediatek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-pcm.c