Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b516d514 authored by Joshua I. James's avatar Joshua I. James Committed by Herbert Xu
Browse files

crypto: ahash - fixed style error in ahash.c



Fixed style error identified by checkpatch.

WARNING: Missing a blank line after declarations
+               unsigned int unaligned = alignmask + 1 - (offset & alignmask);
+               if (nbytes > unaligned)

Signed-off-by: default avatarJoshua I. James <joshua@cybercrimetech.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 267c4221
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@ static int hash_walk_next(struct crypto_hash_walk *walk)

	if (offset & alignmask) {
		unsigned int unaligned = alignmask + 1 - (offset & alignmask);

		if (nbytes > unaligned)
			nbytes = unaligned;
	}