Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: qcom: q6afe-dai: fix Display Port Playback stream name

With recent changes to add more display ports did not change the Stream
name in q6afe-dai. This results in below error
"ASoC: Failed to add route DISPLAY_PORT_RX -> Display Port Playback(*)"
and sound card fails to probe.

Fix this by adding correct stream name.

Fixes: 90848a2557fe ("ASoC: qcom: q6dsp: add support to more display ports")
Reported-by: Amit Pundir <amit.pundir@linaro.org>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20230705124850.40069-1-srinivas.kandagatla@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Srinivas Kandagatla and committed by
Mark Brown
4f3fcf5f bf62eec5

+1 -1
+1 -1
sound/soc/qcom/qdsp6/q6afe-dai.c
··· 476 476 477 477 static const struct snd_soc_dapm_route q6afe_dapm_routes[] = { 478 478 {"HDMI Playback", NULL, "HDMI_RX"}, 479 - {"Display Port Playback", NULL, "DISPLAY_PORT_RX"}, 479 + {"DISPLAY_PORT_RX_0 Playback", NULL, "DISPLAY_PORT_RX"}, 480 480 {"Slimbus Playback", NULL, "SLIMBUS_0_RX"}, 481 481 {"Slimbus1 Playback", NULL, "SLIMBUS_1_RX"}, 482 482 {"Slimbus2 Playback", NULL, "SLIMBUS_2_RX"},