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

misc: open-dice: add missing MODULE_DESCRIPTION() macro

make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/misc/open-dice.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/20240603-md-misc-open-dice-v1-1-ee7972ae0d39@quicinc.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jeff Johnson and committed by
Greg Kroah-Hartman
312eee8f 91f34fc5

+1
+1
drivers/misc/open-dice.c
··· 201 201 module_init(open_dice_init); 202 202 module_exit(open_dice_exit); 203 203 204 + MODULE_DESCRIPTION("Driver for Open Profile for DICE."); 204 205 MODULE_LICENSE("GPL v2"); 205 206 MODULE_AUTHOR("David Brazdil <dbrazdil@google.com>");