summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-06-12 02:44:27 +0300
committerMasami Hiramatsu (Google) <mhiramat@kernel.org>2024-06-12 02:44:27 +0300
commitdf216f57522c2ebe6e301f873195420de7992aa8 (patch)
treea04da18070232a4ca8cc466ff87974642427e8cb /samples
parent3572bd5689b0812b161b40279e39ca5b66d73e88 (diff)
downloadlinux-df216f57522c2ebe6e301f873195420de7992aa8.tar.xz
fprobe: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in samples/fprobe/fprobe_example.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lore.kernel.org/all/20240601-md-samples-fprobe-v1-1-5d256a956612@quicinc.com/ Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Diffstat (limited to 'samples')
-rw-r--r--samples/fprobe/fprobe_example.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/fprobe/fprobe_example.c b/samples/fprobe/fprobe_example.c
index 64e715e7ed11..0a50b05add96 100644
--- a/samples/fprobe/fprobe_example.c
+++ b/samples/fprobe/fprobe_example.c
@@ -150,4 +150,5 @@ static void __exit fprobe_exit(void)
module_init(fprobe_init)
module_exit(fprobe_exit)
+MODULE_DESCRIPTION("sample kernel module showing the use of fprobe");
MODULE_LICENSE("GPL");