aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2016-07-11 19:57:34 -0400
committerMark Brown <broonie@kernel.org>2016-07-16 08:03:01 -0400
commit2e8d1c7d544089fe4894c504020d7ac7eb1de531 (patch)
tree241b0b8a18d714e11d54d2bf32fe9985bdf973b3
parent1db3312e3ab1a776ae8f414640dd7c180ce38a75 (diff)
ASoC: simple-card: use asoc_simple_card_parse_dailink_name()
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/generic/simple-card.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index e3a32d340482..07469cd9272c 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -319,7 +319,6 @@ static int asoc_simple_card_dai_link_of(struct device_node *node,
319 struct device_node *cpu = NULL; 319 struct device_node *cpu = NULL;
320 struct device_node *plat = NULL; 320 struct device_node *plat = NULL;
321 struct device_node *codec = NULL; 321 struct device_node *codec = NULL;
322 char *name;
323 char prop[128]; 322 char prop[128];
324 char *prefix = ""; 323 char *prefix = "";
325 int ret, cpu_args; 324 int ret, cpu_args;
@@ -380,19 +379,13 @@ static int asoc_simple_card_dai_link_of(struct device_node *node,
380 if (!dai_link->platform_of_node) 379 if (!dai_link->platform_of_node)
381 dai_link->platform_of_node = dai_link->cpu_of_node; 380 dai_link->platform_of_node = dai_link->cpu_of_node;
382 381
383 /* DAI link name is created from CPU/CODEC dai name */ 382 ret = asoc_simple_card_set_dailink_name(dev, dai_link,
384 name = devm_kzalloc(dev, 383 "%s-%s",
385 strlen(dai_link->cpu_dai_name) + 384 dai_link->cpu_dai_name,
386 strlen(dai_link->codec_dai_name) + 2, 385 dai_link->codec_dai_name);
387 GFP_KERNEL); 386 if (ret < 0)
388 if (!name) {
389 ret = -ENOMEM;
390 goto dai_link_of_err; 387 goto dai_link_of_err;
391 }
392 388
393 sprintf(name, "%s-%s", dai_link->cpu_dai_name,
394 dai_link->codec_dai_name);
395 dai_link->name = dai_link->stream_name = name;
396 dai_link->ops = &asoc_simple_card_ops; 389 dai_link->ops = &asoc_simple_card_ops;
397 dai_link->init = asoc_simple_card_dai_init; 390 dai_link->init = asoc_simple_card_dai_init;
398 391