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>
This commit is contained in:
Jeff Johnson 2024-05-26 09:52:48 -07:00 committed by Steve French
parent 1613e604df
commit 9ee267a293
2 changed files with 2 additions and 0 deletions

View file

@ -10,6 +10,7 @@
#include <linux/module.h>
#include "arc4.h"
MODULE_DESCRIPTION("ARC4 Cipher Algorithm");
MODULE_LICENSE("GPL");
int cifs_arc4_setkey(struct arc4_ctx *ctx, const u8 *in_key, unsigned int key_len)

View file

@ -24,6 +24,7 @@
#include <asm/byteorder.h>
#include "md4.h"
MODULE_DESCRIPTION("MD4 Message Digest Algorithm (RFC1320)");
MODULE_LICENSE("GPL");
static inline u32 lshift(u32 x, unsigned int s)