]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
m68k: emu: Add missing MODULE_DESCRIPTION() macros
authorJeff Johnson <quic_jjohnson@quicinc.com>
Mon, 17 Jun 2024 23:47:04 +0000 (16:47 -0700)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Mon, 24 Jun 2024 10:16:33 +0000 (12:16 +0200)
With ARCH=m68k, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in arch/m68k/emu/nfblock.o
WARNING: modpost: missing MODULE_DESCRIPTION() in arch/m68k/emu/nfcon.o

Add the missing invocations of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240617-md-m68k-arch-m68k-v1-1-57d38beaeb13@quicinc.com
[geert: s/ARAnyM/Atari NatFeat/]
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
arch/m68k/emu/nfblock.c
arch/m68k/emu/nfcon.c

index 642fb80c5c4e31f6c595e1663a19d7760c68e1e1..cba787ff0b31ff91f355a786f6b546e47470b6e6 100644 (file)
@@ -193,4 +193,5 @@ static void __exit nfhd_exit(void)
 module_init(nfhd_init);
 module_exit(nfhd_exit);
 
+MODULE_DESCRIPTION("Atari NatFeat block device driver");
 MODULE_LICENSE("GPL");
index 17b2987c2bf5436db1e09c166795d3e42a282b35..d41260672e24b7b15c51e8b5e66470e64e9c9231 100644 (file)
@@ -173,4 +173,5 @@ static void __exit nfcon_exit(void)
 module_init(nfcon_init);
 module_exit(nfcon_exit);
 
+MODULE_DESCRIPTION("Atari NatFeat console driver");
 MODULE_LICENSE("GPL");