From 6063f5a8815ae12eba5dc2413d3bcc28e099b24f Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Wed, 29 Aug 2007 19:02:04 +0800 Subject: [PATCH] --- yaml --- r: 67024 b: refs/heads/master c: b16c3a2e2c0307f5370b2b5e18bcbe1437b5f3d8 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/linux/crypto.h | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 74a20e6a839a..2671a43f2294 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 5fa0fea27461f5ff7fad07687618db08272e9502 +refs/heads/master: b16c3a2e2c0307f5370b2b5e18bcbe1437b5f3d8 diff --git a/trunk/include/linux/crypto.h b/trunk/include/linux/crypto.h index b1c7f4187c5b..fc32694287e2 100644 --- a/trunk/include/linux/crypto.h +++ b/trunk/include/linux/crypto.h @@ -624,7 +624,8 @@ static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request *req) return crt->decrypt(req); } -static inline int crypto_ablkcipher_reqsize(struct crypto_ablkcipher *tfm) +static inline unsigned int crypto_ablkcipher_reqsize( + struct crypto_ablkcipher *tfm) { return crypto_ablkcipher_crt(tfm)->reqsize; } @@ -766,7 +767,7 @@ static inline int crypto_aead_decrypt(struct aead_request *req) return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); } -static inline int crypto_aead_reqsize(struct crypto_aead *tfm) +static inline unsigned int crypto_aead_reqsize(struct crypto_aead *tfm) { return crypto_aead_crt(tfm)->reqsize; }