Skip to content
Snippets Groups Projects
Commit 1a05831f authored by Mikhail Vanyulin's avatar Mikhail Vanyulin
Browse files

ASoC: hdmi-codec: fix double definitions of capture streams


This commit fixes following error in dmesg:
    debugfs: File 'Capture' in directory 'dapm' already present!

Signed-off-by: default avatarMikhail Vanyulin <mikhail.vanyulin@rtsoft.de>
parent df32137d
No related branches found
No related tags found
No related merge requests found
......@@ -822,7 +822,7 @@ static const struct snd_soc_dai_driver hdmi_i2s_dai = {
},
.ops = &hdmi_codec_i2s_dai_ops,
.capture = {
.stream_name = "Capture",
.stream_name = "I2S Capture",
.channels_min = 2,
.channels_max = 8,
.rates = HDMI_RATES,
......@@ -846,7 +846,7 @@ static const struct snd_soc_dai_driver hdmi_spdif_dai = {
},
.ops = &hdmi_codec_spdif_dai_ops,
.capture = {
.stream_name = "Capture",
.stream_name = "SPDIF Capture",
.channels_min = 2,
.channels_max = 2,
.rates = HDMI_RATES,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment