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

openpromfs: add missing MODULE_DESCRIPTION() macro

With ARCH=sparc, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/openpromfs/openpromfs.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/20240619-md-sparc-fs-openpromfs-v1-1-51c85ce90fa3@quicinc.com
Signed-off-by: Christian Brauner <brauner@kernel.org>

authored by

Jeff Johnson and committed by
Christian Brauner
807221c5 d694e46a

+1
+1
fs/openpromfs/inode.c
··· 471 471 472 472 module_init(init_openprom_fs) 473 473 module_exit(exit_openprom_fs) 474 + MODULE_DESCRIPTION("OpenPROM filesystem support"); 474 475 MODULE_LICENSE("GPL");