浏览代码

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: Joshua I. James <joshua@cybercrimetech.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Joshua I. James 10 年之前
父节点
当前提交
b516d51402
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      crypto/ahash.c

+ 1 - 0
crypto/ahash.c

@@ -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;
 	}