Skip to content

Commit

Permalink
fprobe: add missing MODULE_DESCRIPTION() macro
Browse files Browse the repository at this point in the history
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/[email protected]/

Signed-off-by: Jeff Johnson <[email protected]>
Signed-off-by: Masami Hiramatsu (Google) <[email protected]>
  • Loading branch information
Jeff Johnson authored and mhiramat committed Jun 11, 2024
1 parent 3572bd5 commit df216f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions samples/fprobe/fprobe_example.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

0 comments on commit df216f5

Please sign in to comment.