Commit b2b6a1720db65c97885ab9fc51fa23be47573bf4

Authored by Harvey Harrison
Committed by Herbert Xu
1 parent bd699f2df6

crypto: rmd128 - sparse annotations

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

Showing 1 changed file with 4 additions and 4 deletions Side-by-side Diff

... ... @@ -26,7 +26,7 @@
26 26 struct rmd128_ctx {
27 27 u64 byte_count;
28 28 u32 state[4];
29   - u32 buffer[16];
  29 + __le32 buffer[16];
30 30 };
31 31  
32 32 #define K1 RMD_K1
... ... @@ -48,7 +48,7 @@
48 48 (a) = rol32((a), (s)); \
49 49 }
50 50  
51   -static void rmd128_transform(u32 *state, u32 const *in)
  51 +static void rmd128_transform(u32 *state, const __le32 *in)
52 52 {
53 53 u32 aa, bb, cc, dd, aaa, bbb, ccc, ddd;
54 54  
... ... @@ -269,8 +269,8 @@
269 269 {
270 270 struct rmd128_ctx *rctx = crypto_tfm_ctx(tfm);
271 271 u32 i, index, padlen;
272   - u64 bits;
273   - u32 *dst = (u32 *)out;
  272 + __le64 bits;
  273 + __le32 *dst = (__le32 *)out;
274 274 static const u8 padding[64] = { 0x80, };
275 275  
276 276 bits = cpu_to_le64(rctx->byte_count << 3);