From: Mark Brown Date: Fri, 24 Mar 2023 16:36:05 +0000 (+0000) Subject: ASoC: remove unnecessary dai_link->platform X-Git-Tag: v6.4-rc1~125^2^2~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09d950723479ef0af3a317ac190a8c1fadd7343c;p=thirdparty%2Fkernel%2Fstable.git ASoC: remove unnecessary dai_link->platform Merge series from Kuninori Morimoto : Current ASoC will ignore already connected component when binding Card. This will happen mainly "CPU Component" is handled as "Platform Component", which was needed before. static int snd_soc_rtd_add_component(...) { ... for_each_rtd_components(rtd, i, comp) { /* already connected */ if (comp == component) return 0; } ... } Some drivers are still using CPU or Dummy Component as Platform Component, but these are no meaning or ignored. This patch-set remove these. --- 09d950723479ef0af3a317ac190a8c1fadd7343c