VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Valdis Klētnieks <valdis.kletnieks@vt.edu> 2019-12-05 20:58:36 -0500 committer: Herbert Xu <herbert@gondor.apana.org.au> 2019-12-11 16:48:38 +0800 commit: 579d705cd64e44f3fcda1a6cfd5f37468a5ddf63 parent: aebe5bd76583441e25d7acb564ec273064fa61b1
Commit Summary:
crypto: chacha - fix warning message in header file
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/include/crypto/internal/chacha.h b/include/crypto/internal/chacha.h
index aa5d4a16aac5..b085dc1ac151 100644
--- a/include/crypto/internal/chacha.h
+++ b/include/crypto/internal/chacha.h
@@ -34,7 +34,7 @@ static inline int chacha20_setkey(struct crypto_skcipher *tfm, const u8 *key,
 	return chacha_setkey(tfm, key, keysize, 20);
 }
 
-static int inline chacha12_setkey(struct crypto_skcipher *tfm, const u8 *key,
+static inline int chacha12_setkey(struct crypto_skcipher *tfm, const u8 *key,
 				  unsigned int keysize)
 {
 	return chacha_setkey(tfm, key, keysize, 12);