summaryrefslogtreecommitdiff
path: root/sound/soc/soc-core.c
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2011-01-13 22:48:52 +0530
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-01-13 23:28:01 +0000
commit4e10bda05d6c7d4aba509bbbab5ba748d54c702f (patch)
tree835a29f06d1d043618b06da9a10aba0a6fc0fb52 /sound/soc/soc-core.c
parent150dd2f8c42bdb3c51533459e3ff5075d8720260 (diff)
downloadlinux-3.10-4e10bda05d6c7d4aba509bbbab5ba748d54c702f.tar.gz
linux-3.10-4e10bda05d6c7d4aba509bbbab5ba748d54c702f.tar.bz2
linux-3.10-4e10bda05d6c7d4aba509bbbab5ba748d54c702f.zip
ASoC: soc core add inline to handle card list initialzation
Currently the soc_probe initializes the card hence it does the card list initialzation. But if machines directly register the card they would need to do these steps, so putting them as inline would save lot of code This patch adds an inline to do list initialzation Signed-off-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Harsha Priya <harsha.priya@intel.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r--sound/soc/soc-core.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 9c5e7cff3f0..83057127b2f 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1872,12 +1872,7 @@ static int soc_probe(struct platform_device *pdev)
/* Bodge while we unpick instantiation */
card->dev = &pdev->dev;
- INIT_LIST_HEAD(&card->dai_dev_list);
- INIT_LIST_HEAD(&card->codec_dev_list);
- INIT_LIST_HEAD(&card->platform_dev_list);
- INIT_LIST_HEAD(&card->widgets);
- INIT_LIST_HEAD(&card->paths);
- INIT_LIST_HEAD(&card->dapm_list);
+ snd_soc_initialize_card_lists(card);
ret = snd_soc_register_card(card);
if (ret != 0) {