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.

dca: add missing MODULE_DESCRIPTION() macro

With ARCH=x86, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dca/dca.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/20240615-dca-md-v2-1-c4062275a3f1@quicinc.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jeff Johnson and committed by
Greg Kroah-Hartman
e9d053f4 d2c5426e

+1
+1
drivers/dca/dca-core.c
··· 17 17 #define DCA_VERSION "1.12.1" 18 18 19 19 MODULE_VERSION(DCA_VERSION); 20 + MODULE_DESCRIPTION("Intel Direct Cache Access (DCA) service module"); 20 21 MODULE_LICENSE("GPL"); 21 22 MODULE_AUTHOR("Intel Corporation"); 22 23