diff options
author | Vinod Koul <vinod.koul@intel.com> | 2011-01-13 22:48:52 +0530 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-01-13 23:28:01 +0000 |
commit | 4e10bda05d6c7d4aba509bbbab5ba748d54c702f (patch) | |
tree | 835a29f06d1d043618b06da9a10aba0a6fc0fb52 /include/sound/soc.h | |
parent | 150dd2f8c42bdb3c51533459e3ff5075d8720260 (diff) | |
download | kernel_goldelico_gta04-4e10bda05d6c7d4aba509bbbab5ba748d54c702f.zip kernel_goldelico_gta04-4e10bda05d6c7d4aba509bbbab5ba748d54c702f.tar.gz kernel_goldelico_gta04-4e10bda05d6c7d4aba509bbbab5ba748d54c702f.tar.bz2 |
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 'include/sound/soc.h')
-rw-r--r-- | include/sound/soc.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index accb8a1..541ddfa 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -779,6 +779,16 @@ static inline void *snd_soc_pcm_get_drvdata(struct snd_soc_pcm_runtime *rtd) return dev_get_drvdata(&rtd->dev); } +static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card) +{ + 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); +} + #include <sound/soc-dai.h> #ifdef CONFIG_DEBUG_FS |