]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: core: use list_del_init and move it back to soc_cleanup_component
authorBard liao <yung-chuan.liao@linux.intel.com>
Wed, 18 Sep 2019 13:31:31 +0000 (21:31 +0800)
committerMark Brown <broonie@kernel.org>
Fri, 20 Sep 2019 11:05:46 +0000 (12:05 +0100)
commitba0097b4785f46992d4a2884669e82a0ec24c1b8
tree4907031f0c05d7e0a951cc61eebe3cab7759d6d1
parent3d6df5fcd7c72708f9b1e34aa5b1b3ed61df8358
ASoC: core: use list_del_init and move it back to soc_cleanup_component

commit afa85fa6dd0e ("ASoC: core: delete component->card_list in soc_remove_component only")
was trying to fix a kernel oops when list_del was called twice without
re-init the list. Use list_del_init() can solve it, too. Besides, it
will be more readable if we cleanup all component related resource at
soc_cleanup_component().

Suggested-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Bard liao <yung-chuan.liao@linux.intel.com>
Link: https://lore.kernel.org/r/20190918133131.15045-1-yung-chuan.liao@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c