From cda3dc51520680d52df56fd22f42db4e64c84600 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 17 Sep 2018 03:58:17 +0200 Subject: poly1305: do not require simd context for arch Signed-off-by: Jason A. Donenfeld --- src/crypto/zinc/poly1305/poly1305-x86_64-glue.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/crypto/zinc/poly1305/poly1305-x86_64-glue.h') diff --git a/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h b/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h index 8cf3ac9..7f1af44 100644 --- a/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h +++ b/src/crypto/zinc/poly1305/poly1305-x86_64-glue.h @@ -55,8 +55,7 @@ void __init poly1305_fpu_init(void) } static inline bool poly1305_init_arch(void *ctx, - const u8 key[POLY1305_KEY_SIZE], - simd_context_t simd_context) + const u8 key[POLY1305_KEY_SIZE]) { poly1305_init_x86_64(ctx, key); return true; -- cgit v1.2.3