From: Lars-Peter Clausen Date: Wed, 20 Aug 2014 11:08:49 +0000 (+0200) Subject: ASoC: Remove table based DAPM/control setup support from snd_soc_platform_driver X-Git-Tag: fixes-against-v3.18-rc2~128^2~8^2~12^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0634814fe0f29a46c44386a03f259f99c983bf7e;p=pandora-kernel.git ASoC: Remove table based DAPM/control setup support from snd_soc_platform_driver There are no users left and new users should rather use the component_driver struct embedded in the snd_soc_platform_driver struct to do this. E.g.: static const struct snd_soc_platform_driver foobar_driver = { .component_driver = { .dapm_widgets = ..., .num_dapm_widgets = ..., ..., }, ... }; instead of static const struct snd_soc_platform_driver foobar_driver = { .dapm_widgets = ..., .num_dapm_widgets = ..., ... }; This also allows us to remove the steal_sibling_dai_widgets hack. Signed-off-by: Lars-Peter Clausen Signed-off-by: Mark Brown --- Reading git-diff-tree failed