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

bsr: add missing MODULE_DESCRIPTION() macro

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

authored by

Jeff Johnson and committed by
Greg Kroah-Hartman
822d7335 6e03b4ae

+1
+1
drivers/char/bsr.c
··· 342 342 343 343 module_init(bsr_init); 344 344 module_exit(bsr_exit); 345 + MODULE_DESCRIPTION("IBM POWER Barrier Synchronization Register Driver"); 345 346 MODULE_LICENSE("GPL"); 346 347 MODULE_AUTHOR("Sonny Rao <sonnyrao@us.ibm.com>");