diff options
author | Xiu Jianfeng <xiujianfeng@huawei.com> | 2022-09-09 11:18:40 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-09-20 02:58:53 +0200 |
commit | f0bd32c833826ba666c30af0bae78fc5ca598138 (patch) | |
tree | eb78e8e2aa116393913f7021cef505ad8eb24c62 /net/rds/af_rds.c | |
parent | rxrpc: remove rxrpc_max_call_lifetime declaration (diff) | |
download | linux-f0bd32c833826ba666c30af0bae78fc5ca598138.tar.xz linux-f0bd32c833826ba666c30af0bae78fc5ca598138.zip |
net: rds: add missing __init/__exit annotations to module init/exit funcs
Add missing __init/__exit annotations to module init/exit funcs.
Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Link: https://lore.kernel.org/r/20220909091840.247946-1-xiujianfeng@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/rds/af_rds.c')
-rw-r--r-- | net/rds/af_rds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rds/af_rds.c b/net/rds/af_rds.c index b239120dd9ca..3ff6995244e5 100644 --- a/net/rds/af_rds.c +++ b/net/rds/af_rds.c @@ -894,7 +894,7 @@ module_exit(rds_exit); u32 rds_gen_num; -static int rds_init(void) +static int __init rds_init(void) { int ret; |