From: Venkat Rao Bagalkote Date: Fri, 10 Apr 2026 15:02:48 +0000 (+0530) Subject: smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc1a64d23641669b60d35dfaed77666a1983bad5;p=thirdparty%2Fkernel%2Flinux.git smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test On the latest linux-next following modpost warning is reported: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/smb/client/smb1maperror_test.o Add MODULE_DESCRIPTION() to the test module to fix the warning. Reviewed-by: Saket Kumar Bhaskar Reviewed-by: ChenXiaoSong Signed-off-by: Venkat Rao Bagalkote Signed-off-by: Steve French --- diff --git a/fs/smb/client/smb1maperror_test.c b/fs/smb/client/smb1maperror_test.c index 820c0dd3bcce1..2caaf11228ef5 100644 --- a/fs/smb/client/smb1maperror_test.c +++ b/fs/smb/client/smb1maperror_test.c @@ -74,3 +74,4 @@ static struct kunit_suite maperror_suite = { kunit_test_suite(maperror_suite); MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("KUnit tests of SMB1 maperror");