aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/generic/simple-card.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index c5445b0ae9ff..e8185a0b933f 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -285,6 +285,17 @@ static int asoc_simple_card_dai_link_of(struct device_node *node,
285 dai_props->codec_dai.fmt, 285 dai_props->codec_dai.fmt,
286 dai_props->codec_dai.sysclk); 286 dai_props->codec_dai.sysclk);
287 287
288 /*
289 * soc_bind_dai_link() will check cpu name
290 * after of_node matching if dai_link has cpu_dai_name.
291 * but, it will never match if name was created by fmt_single_name()
292 * remove cpu_dai_name to escape name matching.
293 * see
294 * fmt_single_name()
295 * fmt_multiple_name()
296 */
297 dai_link->cpu_dai_name = NULL;
298
288dai_link_of_err: 299dai_link_of_err:
289 if (np) 300 if (np)
290 of_node_put(np); 301 of_node_put(np);
@@ -429,18 +440,6 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
429 goto err; 440 goto err;
430 } 441 }
431 442
432 /*
433 * soc_bind_dai_link() will check cpu name
434 * after of_node matching if dai_link has cpu_dai_name.
435 * but, it will never match if name was created by fmt_single_name()
436 * remove cpu_dai_name to escape name matching.
437 * see
438 * fmt_single_name()
439 * fmt_multiple_name()
440 */
441 if (num_links == 1)
442 dai_link->cpu_dai_name = NULL;
443
444 } else { 443 } else {
445 struct asoc_simple_card_info *cinfo; 444 struct asoc_simple_card_info *cinfo;
446 445