diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-08-29 07:02:04 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:55:42 -0400 |
commit | b16c3a2e2c0307f5370b2b5e18bcbe1437b5f3d8 (patch) | |
tree | d955dde777301254729287cc10061e65506977e0 /include/linux/crypto.h | |
parent | 5fa0fea27461f5ff7fad07687618db08272e9502 (diff) |
[CRYPTO] api: Fixed crypto_*_reqsize return type
This patch changes the return type of crypto_*_reqsize from int to
unsigned int which matches what the underlying type is (and should
be).
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/linux/crypto.h')
-rw-r--r-- | include/linux/crypto.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index b1c7f4187c5b..fc32694287e2 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
@@ -624,7 +624,8 @@ static inline int crypto_ablkcipher_decrypt(struct ablkcipher_request *req) | |||
624 | return crt->decrypt(req); | 624 | return crt->decrypt(req); |
625 | } | 625 | } |
626 | 626 | ||
627 | static inline int crypto_ablkcipher_reqsize(struct crypto_ablkcipher *tfm) | 627 | static inline unsigned int crypto_ablkcipher_reqsize( |
628 | struct crypto_ablkcipher *tfm) | ||
628 | { | 629 | { |
629 | return crypto_ablkcipher_crt(tfm)->reqsize; | 630 | return crypto_ablkcipher_crt(tfm)->reqsize; |
630 | } | 631 | } |
@@ -766,7 +767,7 @@ static inline int crypto_aead_decrypt(struct aead_request *req) | |||
766 | return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); | 767 | return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); |
767 | } | 768 | } |
768 | 769 | ||
769 | static inline int crypto_aead_reqsize(struct crypto_aead *tfm) | 770 | static inline unsigned int crypto_aead_reqsize(struct crypto_aead *tfm) |
770 | { | 771 | { |
771 | return crypto_aead_crt(tfm)->reqsize; | 772 | return crypto_aead_crt(tfm)->reqsize; |
772 | } | 773 | } |