Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

lib/test_rhashtable: add missing MODULE_DESCRIPTION() macro

make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_rhashtable.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240531-md-lib-test_rhashtable-v1-1-cd6d4138f1b6@quicinc.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Jeff Johnson and committed by
Jakub Kicinski
c6cab01d d730a42c

+1
+1
lib/test_rhashtable.c
··· 811 811 module_init(test_rht_init); 812 812 module_exit(test_rht_exit); 813 813 814 + MODULE_DESCRIPTION("Resizable, Scalable, Concurrent Hash Table test module"); 814 815 MODULE_LICENSE("GPL v2");