diff options
author | Arnd Bergmann <arnd@arndb.de> | 2022-11-21 13:38:00 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-11-21 13:38:01 +0100 |
commit | f5014dcd931fde4537c60b64d3f65b9b4380cba7 (patch) | |
tree | cff158ab282187199b8298872346c3d3249a4c0d | |
parent | 06ebd23a33ec726b9c19ba05b4e0257811fce4bf (diff) | |
parent | bd52407221b4702af690456b2b6006fa6440e893 (diff) | |
download | linux-f5014dcd931fde4537c60b64d3f65b9b4380cba7.tar.bz2 |
Merge tag 'optee-for-6.2' of https://git.linaro.org/people/jens.wiklander/linux-tee into soc/drivers
Add missing __init/__exit annotations to OP-TEE driver
* tag 'optee-for-6.2' of https://git.linaro.org/people/jens.wiklander/linux-tee:
optee: Add __init/__exit annotations to module init/exit funcs
Link: https://lore.kernel.org/r/Y3d4CHWl3Ofx5OrX@jade
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | drivers/tee/optee/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tee/optee/core.c b/drivers/tee/optee/core.c index daf07737c4fd..2a258bd3b6b5 100644 --- a/drivers/tee/optee/core.c +++ b/drivers/tee/optee/core.c @@ -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(); |