Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b16c3a2e2c0307f5370b2b5e18bcbe1437b5f3d8
Commit:     b16c3a2e2c0307f5370b2b5e18bcbe1437b5f3d8
Parent:     5fa0fea27461f5ff7fad07687618db08272e9502
Author:     Herbert Xu <[EMAIL PROTECTED]>
AuthorDate: Wed Aug 29 19:02:04 2007 +0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 16:55:42 2007 -0700

    [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 <[EMAIL PROTECTED]>
---
 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 b1c7f41..fc32694 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)
        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;
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to