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

mips: sibyte: add missing MODULE_DESCRIPTION() macro

Since commit 1fffe7a34c89 ("script: modpost: emit a warning when the
description is missing"), a module without a MODULE_DESCRIPTION() will
result in a warning with make W=1. The following warning is being
observed when ARCH=mips and CONFIG_SIBYTE_TBPROF=m:

WARNING: modpost: missing MODULE_DESCRIPTION() in arch/mips/sibyte/common/sb_tbprof.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>

authored by

Jeff Johnson and committed by
Thomas Bogendoerfer
2c716cf1 a263e5f3

+1
+1
arch/mips/sibyte/common/sb_tbprof.c
··· 589 589 590 590 MODULE_ALIAS_CHARDEV_MAJOR(SBPROF_TB_MAJOR); 591 591 MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>"); 592 + MODULE_DESCRIPTION("Support for ZBbus profiling"); 592 593 MODULE_LICENSE("GPL");