From: Jeff Johnson Date: Sun, 26 May 2024 18:53:49 +0000 (-0700) Subject: jbd2: add missing MODULE_DESCRIPTION() X-Git-Tag: v6.11-rc1~122^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=89a8718cef859091239fa60b4b5749ecea93f55d;p=thirdparty%2Flinux.git jbd2: add missing MODULE_DESCRIPTION() Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/jbd2/jbd2.o Signed-off-by: Jeff Johnson Link: https://patch.msgid.link/20240526-md-fs-jbd2-v1-1-7bba6665327d@quicinc.com Signed-off-by: Theodore Ts'o --- diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index 25ef4fc806678..3501f75f0fbfc 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c @@ -3157,6 +3157,7 @@ static void __exit journal_exit(void) jbd2_journal_destroy_caches(); } +MODULE_DESCRIPTION("Generic filesystem journal-writing module"); MODULE_LICENSE("GPL"); module_init(journal_init); module_exit(journal_exit);