Skip to content

Commit cbf3753

Browse files
author
Codrin Ciubotariu
committed
ASoC: atmel: i2s-mcc: remove interface name from stream_name
Remove the interface name from the stream_name. The interface name (and the index of the interface) can be set in DT using the sound-name-prefix string property. Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
1 parent 4dc59b2 commit cbf3753

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sound/soc/atmel/mchp-i2s-mcc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -908,14 +908,14 @@ static int mchp_i2s_mcc_dai_probe(struct snd_soc_dai *dai)
908908
static struct snd_soc_dai_driver mchp_i2s_mcc_dai = {
909909
.probe = mchp_i2s_mcc_dai_probe,
910910
.playback = {
911-
.stream_name = "I2SMCC-Playback",
911+
.stream_name = "Playback",
912912
.channels_min = 1,
913913
.channels_max = 8,
914914
.rates = MCHP_I2SMCC_RATES,
915915
.formats = MCHP_I2SMCC_FORMATS,
916916
},
917917
.capture = {
918-
.stream_name = "I2SMCC-Capture",
918+
.stream_name = "Capture",
919919
.channels_min = 1,
920920
.channels_max = 8,
921921
.rates = MCHP_I2SMCC_RATES,

0 commit comments

Comments
 (0)