diff options
author | Randy Dunlap | 2021-08-08 13:52:33 -0700 |
---|---|---|
committer | Herbert Xu | 2021-08-12 19:32:17 +0800 |
commit | 9491923e4a68d696f7d0817a02829ed238783716 (patch) | |
tree | 9a1edd75d0f2124be1484b7f8f24f03f3addfe77 /crypto | |
parent | ea5202dff79ce23e1a9fee3e1b2f09e28b77ba3a (diff) |
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 <rdunlap@infradead.org>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: linux-crypto@vger.kernel.org
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/wp512.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/wp512.c b/crypto/wp512.c index bf79fbb2340f..5e820afa3c78 100644 --- a/crypto/wp512.c +++ b/crypto/wp512.c @@ -775,7 +775,7 @@ static const u64 rc[WHIRLPOOL_ROUNDS] = { 0xca2dbf07ad5a8333ULL, }; -/** +/* * The core Whirlpool transform. */ |