]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ASoC: Intel: Skylake: Fix to correct check for non DSP widget
authorJeeja KP <jeeja.kp@intel.com>
Tue, 27 Oct 2015 00:22:44 +0000 (09:22 +0900)
committerMark Brown <broonie@kernel.org>
Mon, 16 Nov 2015 10:08:09 +0000 (10:08 +0000)
To get the FE copier module, the check to ignore non DSP widgets
was wrong. This path corrects the check to ignore non DSP widget.

Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/skylake/skl-topology.c

index a7854c8fc523e832f6137437c6e7737cc5eee46c..98ccd42b8867ee6c319620ba0e8509a6c33273c1 100644 (file)
@@ -846,7 +846,7 @@ skl_tplg_fe_get_cpr_module(struct snd_soc_dai *dai, int stream)
                w = dai->playback_widget;
                snd_soc_dapm_widget_for_each_sink_path(w, p) {
                        if (p->connect && p->sink->power &&
-                                       is_skl_dsp_widget_type(p->sink))
+                                       !is_skl_dsp_widget_type(p->sink))
                                continue;
 
                        if (p->sink->priv) {
@@ -859,7 +859,7 @@ skl_tplg_fe_get_cpr_module(struct snd_soc_dai *dai, int stream)
                w = dai->capture_widget;
                snd_soc_dapm_widget_for_each_source_path(w, p) {
                        if (p->connect && p->source->power &&
-                                       is_skl_dsp_widget_type(p->source))
+                                       !is_skl_dsp_widget_type(p->source))
                                continue;
 
                        if (p->source->priv) {