diff options
| author | Stephen Boyd <[email protected]> | 2022-03-15 14:06:06 -0700 | 
|---|---|---|
| committer | Stephen Boyd <[email protected]> | 2022-03-15 14:06:06 -0700 | 
| commit | 99105cc81885e1278c927cdff15a3fdef5c29289 (patch) | |
| tree | c48ea12335dc9006df715a05433f3f19a3570ff7 /lib/crypto/blake2s.c | |
| parent | ed06099c5d0b329082cc19c58eace0b20bf7fe70 (diff) | |
| parent | 754e0b0e35608ed5206d6a67a791563c631cec07 (diff) | |
Merge tag 'v5.17-rc4' into clk-ti
We want to get commit 31aa7056bbec ("ARM: dts: Don't use legacy clock
defines for dra7 clkctrl") so merge in the nearest rc.
Diffstat (limited to 'lib/crypto/blake2s.c')
| -rw-r--r-- | lib/crypto/blake2s.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/crypto/blake2s.c b/lib/crypto/blake2s.c index 9364f79937b8..c71c09621c09 100644 --- a/lib/crypto/blake2s.c +++ b/lib/crypto/blake2s.c @@ -18,14 +18,14 @@  void blake2s_update(struct blake2s_state *state, const u8 *in, size_t inlen)  { -	__blake2s_update(state, in, inlen, blake2s_compress); +	__blake2s_update(state, in, inlen, false);  }  EXPORT_SYMBOL(blake2s_update);  void blake2s_final(struct blake2s_state *state, u8 *out)  {  	WARN_ON(IS_ENABLED(DEBUG) && !out); -	__blake2s_final(state, out, blake2s_compress); +	__blake2s_final(state, out, false);  	memzero_explicit(state, sizeof(*state));  }  EXPORT_SYMBOL(blake2s_final); |