Skip to content

Commit

Permalink
Merge remote-tracking branch 'asoc/topic/core' into asoc-next
Browse files Browse the repository at this point in the history
  • Loading branch information
broonie committed Dec 12, 2016
2 parents 66f8990 + 06859fc commit 3f1b861
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sound/soc/soc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -993,6 +993,7 @@ static int soc_bind_dai_link(struct snd_soc_card *card,
struct snd_soc_dai_link_component cpu_dai_component;
struct snd_soc_dai **codec_dais;
struct snd_soc_platform *platform;
struct device_node *platform_of_node;
const char *platform_name;
int i;

Expand Down Expand Up @@ -1042,9 +1043,12 @@ static int soc_bind_dai_link(struct snd_soc_card *card,

/* find one from the set of registered platforms */
list_for_each_entry(platform, &platform_list, list) {
platform_of_node = platform->dev->of_node;
if (!platform_of_node && platform->dev->parent->of_node)
platform_of_node = platform->dev->parent->of_node;

if (dai_link->platform_of_node) {
if (platform->dev->of_node !=
dai_link->platform_of_node)
if (platform_of_node != dai_link->platform_of_node)
continue;
} else {
if (strcmp(platform->component.name, platform_name))
Expand Down

0 comments on commit 3f1b861

Please sign in to comment.