public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] poly1305: Make prototypes match
@ 2021-04-25 21:13 Andi Kleen
  2021-05-14 10:48 ` Herbert Xu
  0 siblings, 1 reply; 4+ messages in thread
From: Andi Kleen @ 2021-04-25 21:13 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andi Kleen, Jason A . Donenfeld, Herbert Xu

From: Andi Kleen <andi@firstfloor.org>

gcc 11 complains when arrays in prototypes do not match the function.
Fix this here.

Cc: Jason A. Donenfeld <Jason@zx2c4.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Andi Kleen <andi@firstfloor.org>
---
 include/crypto/internal/poly1305.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/crypto/internal/poly1305.h b/include/crypto/internal/poly1305.h
index 064e52ca5248..90ee36411e36 100644
--- a/include/crypto/internal/poly1305.h
+++ b/include/crypto/internal/poly1305.h
@@ -18,7 +18,7 @@
  * only the ε-almost-∆-universal hash function (not the full MAC) is computed.
  */
 
-void poly1305_core_setkey(struct poly1305_core_key *key, const u8 *raw_key);
+void poly1305_core_setkey(struct poly1305_core_key *key, const u8 raw_key[16]);
 static inline void poly1305_core_init(struct poly1305_state *state)
 {
 	*state = (struct poly1305_state){};
-- 
2.25.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-05-17  1:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-25 21:13 [PATCH] poly1305: Make prototypes match Andi Kleen
2021-05-14 10:48 ` Herbert Xu
2021-05-14 14:13   ` Andi Kleen
2021-05-17  1:05     ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox