Skip to content

Commit 9ee267a

Browse files
Jeff JohnsonSteve French
authored andcommitted
fs: smb: common: add missing MODULE_DESCRIPTION() macros
Fix the 'make W=1' warnings: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/smb/common/cifs_arc4.o WARNING: modpost: missing MODULE_DESCRIPTION() in fs/smb/common/cifs_md4.o Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Steve French <stfrench@microsoft.com>
1 parent 1613e60 commit 9ee267a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

fs/smb/common/cifs_arc4.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include <linux/module.h>
1111
#include "arc4.h"
1212

13+
MODULE_DESCRIPTION("ARC4 Cipher Algorithm");
1314
MODULE_LICENSE("GPL");
1415

1516
int cifs_arc4_setkey(struct arc4_ctx *ctx, const u8 *in_key, unsigned int key_len)

fs/smb/common/cifs_md4.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <asm/byteorder.h>
2525
#include "md4.h"
2626

27+
MODULE_DESCRIPTION("MD4 Message Digest Algorithm (RFC1320)");
2728
MODULE_LICENSE("GPL");
2829

2930
static inline u32 lshift(u32 x, unsigned int s)

0 commit comments

Comments
 (0)