Skip to content

Commit 1f5a333

Browse files
Jeff Johnsonaxboe
authored andcommitted
s390/dasd: add missing MODULE_DESCRIPTION() macros
With ARCH=s390, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/s390/block/dasd_diag_mod.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/s390/block/dasd_eckd_mod.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/s390/block/dasd_fba_mod.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Stefan Haberland <sth@linux.ibm.com> Link: https://lore.kernel.org/r/20240715112434.2111291-2-sth@linux.ibm.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
1 parent 3c80ebb commit 1f5a333

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

drivers/s390/block/dasd_diag.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "dasd_int.h"
3030
#include "dasd_diag.h"
3131

32+
MODULE_DESCRIPTION("S/390 Support for DIAG access to DASD Disks");
3233
MODULE_LICENSE("GPL");
3334

3435
/* The maximum number of blocks per request (max_blocks) is dependent on the

drivers/s390/block/dasd_eckd.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
/* 64k are 128 x 512 byte sectors */
4545
#define DASD_RAW_SECTORS_PER_TRACK 128
4646

47+
MODULE_DESCRIPTION("S/390 DASD ECKD Disks device driver");
4748
MODULE_LICENSE("GPL");
4849

4950
static struct dasd_discipline dasd_eckd_discipline;

drivers/s390/block/dasd_fba.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#define DASD_FBA_CCW_LOCATE 0x43
3333
#define DASD_FBA_CCW_DEFINE_EXTENT 0x63
3434

35+
MODULE_DESCRIPTION("S/390 DASD FBA Disks device driver");
3536
MODULE_LICENSE("GPL");
3637

3738
static struct dasd_discipline dasd_fba_discipline;

0 commit comments

Comments
 (0)