diff options
author | Breno Leitao <leitao@debian.org> | 2024-01-08 19:16:05 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-01-12 01:16:08 +0100 |
commit | d8610e431fe53ee3a1a11a7f25528b03f8a0b1c7 (patch) | |
tree | da5630f03ec51db76b750ecd0a91e0f13563762d /net/sunrpc/sunrpc_syms.c | |
parent | net: fill in MODULE_DESCRIPTION()s for NFC (diff) | |
download | linux-d8610e431fe53ee3a1a11a7f25528b03f8a0b1c7.tar.xz linux-d8610e431fe53ee3a1a11a7f25528b03f8a0b1c7.zip |
net: fill in MODULE_DESCRIPTION()s for Sun RPC
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to Sun RPC modules.
Signed-off-by: Breno Leitao <leitao@debian.org>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Link: https://lore.kernel.org/r/20240108181610.2697017-6-leitao@debian.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/sunrpc/sunrpc_syms.c')
-rw-r--r-- | net/sunrpc/sunrpc_syms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c index 691c0000e9ea..bab6cab29405 100644 --- a/net/sunrpc/sunrpc_syms.c +++ b/net/sunrpc/sunrpc_syms.c @@ -148,6 +148,7 @@ cleanup_sunrpc(void) #endif rcu_barrier(); /* Wait for completion of call_rcu()'s */ } +MODULE_DESCRIPTION("Sun RPC core"); MODULE_LICENSE("GPL"); fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */ module_exit(cleanup_sunrpc); |