aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/mxs/mxs-sgtl5000.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/mxs/mxs-sgtl5000.c b/sound/soc/mxs/mxs-sgtl5000.c
index 1b134d72f120..ed8a51945306 100644
--- a/sound/soc/mxs/mxs-sgtl5000.c
+++ b/sound/soc/mxs/mxs-sgtl5000.c
@@ -91,11 +91,13 @@ static struct snd_soc_dai_link mxs_sgtl5000_dai[] = {
91 .stream_name = "HiFi Playback", 91 .stream_name = "HiFi Playback",
92 .codec_dai_name = "sgtl5000", 92 .codec_dai_name = "sgtl5000",
93 .ops = &mxs_sgtl5000_hifi_ops, 93 .ops = &mxs_sgtl5000_hifi_ops,
94 .playback_only = true,
94 }, { 95 }, {
95 .name = "HiFi Rx", 96 .name = "HiFi Rx",
96 .stream_name = "HiFi Capture", 97 .stream_name = "HiFi Capture",
97 .codec_dai_name = "sgtl5000", 98 .codec_dai_name = "sgtl5000",
98 .ops = &mxs_sgtl5000_hifi_ops, 99 .ops = &mxs_sgtl5000_hifi_ops,
100 .capture_only = true,
99 }, 101 },
100}; 102};
101 103