diff options
author | 2018-09-29 05:33:09 +0200 | |
---|---|---|
committer | 2018-10-02 03:41:49 +0200 | |
commit | 3244919dc71bcea2a49d1d0b8adb1ac97fb0b8e6 (patch) | |
tree | f4f9e3a86d6b04e42c884866f0f9fc94123ec066 /src/crypto/zinc/chacha20/chacha20.c | |
parent | crypto: document what's used from <crypto/ beside #include (diff) | |
download | wireguard-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/chacha20/chacha20.c')
-rw-r--r-- | src/crypto/zinc/chacha20/chacha20.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/zinc/chacha20/chacha20.c b/src/crypto/zinc/chacha20/chacha20.c index c6a29f8..3415105 100644 --- a/src/crypto/zinc/chacha20/chacha20.c +++ b/src/crypto/zinc/chacha20/chacha20.c @@ -22,7 +22,7 @@ #elif defined(CONFIG_ZINC_ARCH_MIPS) #include "chacha20-mips-glue.h" #else -void __init chacha20_fpu_init(void) +static void __init chacha20_fpu_init(void) { } static inline bool chacha20_arch(struct chacha20_ctx *state, u8 *dst, |