ASoC: soc-core: initialize debugfs in snd_soc_instantiate_card()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tue, 24 Mar 2015 09:01:00 +0000 (09:01 +0000)
committerMark Brown <broonie@kernel.org>
Tue, 24 Mar 2015 17:48:56 +0000 (10:48 -0700)
commit4e2576bd36a12e78ac3786d05b99a820dffe687f
tree44c1484139d6f14eccf84f5aa1ca73bb711393cb
parent778952598e53f09251bebe1655177b355cd9e836
ASoC: soc-core: initialize debugfs in snd_soc_instantiate_card()

Current soc_init_card_debugfs() is called from snd_soc_register_card()
but, soc_cleanup_card_debugfs() is called from soc_cleanup_card_resources(),
not from paired function.

This differences don't matter for now. But if anyone wants to implement
a proper hotplug/unplug, this difference would become clearer.

Now, we can assume that snd_soc_instantiate_card() and
soc_cleanup_card_resources() are paired function.
soc_init_card_debugfs() / soc_cleanup_card_debugfs() paired function
should be called from these.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c