diff options
author | Jeff Johnson <[email protected]> | 2024-06-17 18:13:34 -0700 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2024-06-19 07:54:00 -0600 |
commit | 465478bb00168a7620788990b1679c5067d421f2 (patch) | |
tree | b0c84ed64153934fd6e4ecef52b543b3def4aeea | |
parent | ba8df22e25e7e906254f4f490d7bcfbe637152aa (diff) |
z2ram: add missing MODULE_DESCRIPTION() macro
With ARCH=m68k, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/block/z2ram.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <[email protected]>
Reviewed-by: Geert Uytterhoeven <[email protected]>
Reviewed-by: Chaitanya Kulkarni <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | drivers/block/z2ram.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/z2ram.c b/drivers/block/z2ram.c index 7c5f4e4d9b50..4b7219be1bb8 100644 --- a/drivers/block/z2ram.c +++ b/drivers/block/z2ram.c @@ -409,4 +409,5 @@ static void __exit z2_exit(void) module_init(z2_init); module_exit(z2_exit); +MODULE_DESCRIPTION("Amiga Zorro II ramdisk driver"); MODULE_LICENSE("GPL"); |