Skip to content

Commit ed58ae8

Browse files
Jeff Johnsongeertu
authored andcommitted
m68k: emu: Add missing MODULE_DESCRIPTION() macros
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] [geert: s/ARAnyM/Atari NatFeat/] Signed-off-by: Geert Uytterhoeven <[email protected]>
1 parent 1d8491d commit ed58ae8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

arch/m68k/emu/nfblock.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,5 @@ static void __exit nfhd_exit(void)
193193
module_init(nfhd_init);
194194
module_exit(nfhd_exit);
195195

196+
MODULE_DESCRIPTION("Atari NatFeat block device driver");
196197
MODULE_LICENSE("GPL");

arch/m68k/emu/nfcon.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,5 @@ static void __exit nfcon_exit(void)
173173
module_init(nfcon_init);
174174
module_exit(nfcon_exit);
175175

176+
MODULE_DESCRIPTION("Atari NatFeat console driver");
176177
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)