From: Xiubo Li Date: Fri, 20 Dec 2013 06:39:51 +0000 (+0800) Subject: ASoC: core: Fix the DAI name getting. X-Git-Tag: next-20140106~51^2~6^2~4^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e41975ed;p=karo-tx-linux.git ASoC: core: Fix the DAI name getting. From "ASoC: make snd_soc_dai_link more symmetrical", can we see that the name of CPU DAI maybe omitted. If the DAI name is omitted, try to use the component name instead. Signed-off-by: Xiubo Li Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 4e53d87e881d..03c779ebd729 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -4617,10 +4617,14 @@ int snd_soc_of_get_dai_name(struct device_node *of_node, if (id < 0 || id >= pos->num_dai) { ret = -EINVAL; - } else { - *dai_name = pos->dai_drv[id].name; - ret = 0; + break; } + + ret = 0; + + *dai_name = pos->dai_drv[id].name; + if (!*dai_name) + *dai_name = pos->name; } break;