linux-kbuild.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] script: modpost: emit warning when description is missing
@ 2023-03-06 17:41 Vincenzo Palazzo
  2023-03-07  2:34 ` Masahiro Yamada
  0 siblings, 1 reply; 3+ messages in thread
From: Vincenzo Palazzo @ 2023-03-06 17:41 UTC (permalink / raw)
  To: linux-kbuild; +Cc: masahiroy, Vincenzo Palazzo, Roland Kletzing

Emit a warning when the mod description is missed.

Reported-by: Roland Kletzing <devzero@web.de>
Link: https://bugzilla.kernel.org/show_bug.cgi?id=10770
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
---
 scripts/mod/modpost.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index efff8078e395..c63156ba4e5e 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -1824,6 +1824,9 @@ static void read_symbols(const char *modname)
 		}
 	}
 
+	if (!get_modinfo(&info, "description"))
+		warn("missing MODULE_DESCRIPTION() in %s\n", modname);
+
 	for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
 		symname = remove_dot(info.strtab + sym->st_name);
 
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-08  8:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-06 17:41 [PATCH v1 1/1] script: modpost: emit warning when description is missing Vincenzo Palazzo
2023-03-07  2:34 ` Masahiro Yamada
2023-03-08  8:46   ` Vincenzo Palazzo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).