ASoC: soc-core: Allow searching dai driver name in snd_soc_find_dai
authorJeffy Chen <jeffy.chen@rock-chips.com>
Tue, 22 Aug 2017 07:57:21 +0000 (15:57 +0800)
committerMark Brown <broonie@kernel.org>
Tue, 22 Aug 2017 12:45:55 +0000 (13:45 +0100)
Currently we are searching dai name in snd_soc_find_dai, which could
either be dai driver name or component device name(for legacy naming).

Allow searching dai driver name in snd_soc_find_dai too, so that we can
use dai driver name to find legacy naming dais.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c

index 50c8dba..6fab0ff 100644 (file)
@@ -1000,7 +1000,7 @@ static struct snd_soc_component *soc_find_component(
 /**
  * snd_soc_find_dai - Find a registered DAI
  *
- * @dlc: name of the DAI and optional component info to match
+ * @dlc: name of the DAI or the DAI driver and optional component info to match
  *
  * This function will search all registered components and their DAIs to
  * find the DAI of the same name. The component's of_node and name
@@ -1028,7 +1028,8 @@ struct snd_soc_dai *snd_soc_find_dai(
                if (dlc->name && strcmp(component->name, dlc->name))
                        continue;
                list_for_each_entry(dai, &component->dai_list, list) {
-                       if (dlc->dai_name && strcmp(dai->name, dlc->dai_name))
+                       if (dlc->dai_name && strcmp(dai->name, dlc->dai_name)
+                           && strcmp(dai->driver->name, dlc->dai_name))
                                continue;
 
                        return dai;