mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
optee: Add __init/__exit annotations to module init/exit funcs
Add missing __init/__exit annotations to module init/exit funcs. Reviewed-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
This commit is contained in:
parent
4fe89d07dc
commit
bd52407221
@ -188,7 +188,7 @@ void optee_remove_common(struct optee *optee)
|
||||
static int smc_abi_rc;
|
||||
static int ffa_abi_rc;
|
||||
|
||||
static int optee_core_init(void)
|
||||
static int __init optee_core_init(void)
|
||||
{
|
||||
/*
|
||||
* The kernel may have crashed at the same time that all available
|
||||
@ -210,7 +210,7 @@ static int optee_core_init(void)
|
||||
}
|
||||
module_init(optee_core_init);
|
||||
|
||||
static void optee_core_exit(void)
|
||||
static void __exit optee_core_exit(void)
|
||||
{
|
||||
if (!smc_abi_rc)
|
||||
optee_smc_abi_unregister();
|
||||
|
Loading…
Reference in New Issue
Block a user