ASoC: DSP: Set correct widget type for capture FE/BE

For capture stream direction, the FE type is AIF_OUT and
BE type is AIF_IN. This will allow to search the correct
type of widgets for audio capture.

Signed-off-by: Misael Lopez Cruz <misael.lopez@ti.com>
diff --git a/sound/soc/soc-dsp.c b/sound/soc/soc-dsp.c
index 6916a09..cfb1f22 100644
--- a/sound/soc/soc-dsp.c
+++ b/sound/soc/soc-dsp.c
@@ -160,8 +160,8 @@
 		fe_type = snd_soc_dapm_aif_in;
 		be_type = snd_soc_dapm_aif_out;
 	} else {
-		fe_type = snd_soc_dapm_aif_in;
-		be_type = snd_soc_dapm_aif_out;
+		fe_type = snd_soc_dapm_aif_out;
+		be_type = snd_soc_dapm_aif_in;
 	}
 
 	/* get number of valid playback paths and their widgets */