summaryrefslogtreecommitdiff
path: root/sound/soc
diff options
context:
space:
mode:
authorRevathi Uddaraju <revathiu@codeaurora.org>2017-07-06 19:23:21 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2017-07-10 04:03:50 -0700
commitaea170507758700faf5f10b97466b6d829567fb0 (patch)
tree9c297b6e6b25a9c825d8ce1388ac2005d7f7e7a9 /sound/soc
parent3ec8bfc9bb3a1f1a8584074f914c1d92f052b7f1 (diff)
ASoC: msm: qdsp6v2: Set path type to LIVE_REC in LISTEN passthrough case
ADSP SVA needs LIVE_REC path type for LISTEN pass through mode for successful loading of SVA App. Hence set path type to LIVE_REC in LISTEN pass through case. Change-Id: I4404f2a64f0add62782beab3a5d8d63615d8ac01 Signed-off-by: Revathi Uddaraju <revathiu@codeaurora.org>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/msm/qdsp6v2/msm-pcm-routing-v2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/msm/qdsp6v2/msm-pcm-routing-v2.c b/sound/soc/msm/qdsp6v2/msm-pcm-routing-v2.c
index 974d4a582540..17174769495b 100644
--- a/sound/soc/msm/qdsp6v2/msm-pcm-routing-v2.c
+++ b/sound/soc/msm/qdsp6v2/msm-pcm-routing-v2.c
@@ -1088,7 +1088,7 @@ int msm_pcm_routing_reg_phy_compr_stream(int fe_id, int perf_mode,
port_type = MSM_AFE_PORT_TYPE_RX;
} else if (stream_type == SNDRV_PCM_STREAM_CAPTURE) {
session_type = SESSION_TYPE_TX;
- if (passthr_mode != LEGACY_PCM)
+ if ((passthr_mode != LEGACY_PCM) && (passthr_mode != LISTEN))
path_type = ADM_PATH_COMPRESSED_TX;
else
path_type = ADM_PATH_LIVE_REC;