From: Randy Dunlap Date: Sun, 8 Aug 2021 20:52:33 +0000 (-0700) Subject: crypto: wp512 - correct a non-kernel-doc comment X-Git-Tag: accepted/tizen/unified/20230118.172025~6578^2~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9491923e4a68d696f7d0817a02829ed238783716;p=platform%2Fkernel%2Flinux-rpi.git crypto: wp512 - correct a non-kernel-doc comment Don't use "/**" to begin a comment that is not kernel-doc notation. crypto/wp512.c:779: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * The core Whirlpool transform. Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org Signed-off-by: Herbert Xu --- diff --git a/crypto/wp512.c b/crypto/wp512.c index bf79fbb..5e820af 100644 --- a/crypto/wp512.c +++ b/crypto/wp512.c @@ -775,7 +775,7 @@ static const u64 rc[WHIRLPOOL_ROUNDS] = { 0xca2dbf07ad5a8333ULL, }; -/** +/* * The core Whirlpool transform. */