aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/zinc/poly1305/poly1305.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-09-29 05:33:09 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-10-02 03:41:49 +0200
commit3244919dc71bcea2a49d1d0b8adb1ac97fb0b8e6 (patch)
treef4f9e3a86d6b04e42c884866f0f9fc94123ec066 /src/crypto/zinc/poly1305/poly1305.c
parentcrypto: document what's used from <crypto/ beside #include (diff)
downloadwireguard-monolithic-historical-3244919dc71bcea2a49d1d0b8adb1ac97fb0b8e6.tar.xz
wireguard-monolithic-historical-3244919dc71bcea2a49d1d0b8adb1ac97fb0b8e6.zip
crypto: add missing static keyword to fpu init functions
Diffstat (limited to 'src/crypto/zinc/poly1305/poly1305.c')
-rw-r--r--src/crypto/zinc/poly1305/poly1305.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/zinc/poly1305/poly1305.c b/src/crypto/zinc/poly1305/poly1305.c
index 064856b..4ab8116 100644
--- a/src/crypto/zinc/poly1305/poly1305.c
+++ b/src/crypto/zinc/poly1305/poly1305.c
@@ -39,7 +39,7 @@ static inline bool poly1305_emit_arch(void *ctx, u8 mac[POLY1305_MAC_SIZE],
{
return false;
}
-void __init poly1305_fpu_init(void)
+static void __init poly1305_fpu_init(void)
{
}
#endif