]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: soc-utils: Remove __exit for snd_soc_util_exit()
authorChen Zhongjin <chenzhongjin@huawei.com>
Mon, 31 Oct 2022 13:40:31 +0000 (21:40 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Nov 2022 16:42:14 +0000 (17:42 +0100)
commit5614138c39709463ae0d2a34f878a0e906dd8ed8
tree6df02737ed1591428af583cdf70eb765dad097de
parent2492bd009b9c0508911a4715fd2426e850cde093
ASoC: soc-utils: Remove __exit for snd_soc_util_exit()

[ Upstream commit 3895ff69fbbe4dbf3f0188c115b4cb1e31eaecd4 ]

snd_soc_util_exit() is called in __init snd_soc_init() for cleanup.
Remove the __exit annotation for it to fix the build warning:

WARNING: modpost: sound/soc/snd-soc-core.o: section mismatch in reference: init_module (section: .init.text) -> snd_soc_util_exit (section: .exit.text)

Fixes: aba6e5da7edf ("ASoC: core: Fix use-after-free in snd_soc_exit()")
Signed-off-by: Chen Zhongjin <chenzhongjin@huawei.com>
Link: https://lore.kernel.org/r/20221031134031.256511-1-chenzhongjin@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
sound/soc/soc-utils.c