Message ID | 20210414101212.65573-1-daniel.baluta@oss.nxp.com (mailing list archive) |
---|---|
State | Accepted |
Commit | d97140033948363ffdf5ed71dd2366f717e120e7 |
Headers | show |
Series | [RESEND,v2] ASoC: core: Don't set platform name when of_node is set | expand |
On Wed, 14 Apr 2021 13:12:12 +0300, Daniel Baluta wrote: > A DAI link has 3 components: > * CPU > * platform > * codec(s) > > A component is specified via: > * name > * of_node > * dai_name > > [...] Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: core: Don't set platform name when of_node is set commit: d97140033948363ffdf5ed71dd2366f717e120e7 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 522bae73640a..7a1c011a7fe0 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -1648,7 +1648,11 @@ static void soc_check_tplg_fes(struct snd_soc_card *card) dev_err(card->dev, "init platform error"); continue; } - dai_link->platforms->name = component->name; + + if (component->dev->of_node) + dai_link->platforms->of_node = component->dev->of_node; + else + dai_link->platforms->name = component->name; /* convert non BE into BE */ if (!dai_link->no_pcm) {