forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/arch/arm/crypto/blake2b-neon-glue.c
....@@ -21,7 +21,7 @@
2121 static void blake2b_compress_arch(struct blake2b_state *state,
2222 const u8 *block, size_t nblocks, u32 inc)
2323 {
24
- if (!may_use_simd()) {
24
+ if (!crypto_simd_usable()) {
2525 blake2b_compress_generic(state, block, nblocks, inc);
2626 return;
2727 }