hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/arch/arm/crypto/blake2s-core.S
....@@ -167,8 +167,8 @@
167167 .endm
168168
169169 //
170
-// void blake2s_compress_arch(struct blake2s_state *state,
171
-// const u8 *block, size_t nblocks, u32 inc);
170
+// void blake2s_compress(struct blake2s_state *state,
171
+// const u8 *block, size_t nblocks, u32 inc);
172172 //
173173 // Only the first three fields of struct blake2s_state are used:
174174 // u32 h[8]; (inout)
....@@ -176,7 +176,7 @@
176176 // u32 f[2]; (in)
177177 //
178178 .align 5
179
-ENTRY(blake2s_compress_arch)
179
+ENTRY(blake2s_compress)
180180 push {r0-r2,r4-r11,lr} // keep this an even number
181181
182182 .Lnext_block:
....@@ -303,4 +303,4 @@
303303 str r3, [r12], #4
304304 bne 1b
305305 b .Lcopy_block_done
306
-ENDPROC(blake2s_compress_arch)
306
+ENDPROC(blake2s_compress)