Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5aaff0c8f7dd3515c9f1ca57f86463f30779acc7
Commit:     5aaff0c8f7dd3515c9f1ca57f86463f30779acc7
Parent:     70dec235d8ac8cfb56ed2a3597e7d6c5b801f018
Author:     Ingo Oeser <[EMAIL PROTECTED]>
AuthorDate: Wed Sep 19 19:11:41 2007 +0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 16:55:44 2007 -0700

    [CRYPTO] blkcipher: Use max() in blkcipher_get_spot() to state the intention
    
    Use max in blkcipher_get_spot() instead of open coding it.
    
    Signed-off-by: Ingo Oeser <[EMAIL PROTECTED]>
    Signed-off-by: Herbert Xu <[EMAIL PROTECTED]>
---
 crypto/blkcipher.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/crypto/blkcipher.c b/crypto/blkcipher.c
index 5991c53..9c49770 100644
--- a/crypto/blkcipher.c
+++ b/crypto/blkcipher.c
@@ -65,7 +65,7 @@ static inline void blkcipher_unmap_dst(struct blkcipher_walk 
*walk)
 static inline u8 *blkcipher_get_spot(u8 *start, unsigned int len)
 {
        u8 *end_page = (u8 *)(((unsigned long)(start + len - 1)) & PAGE_MASK);
-       return start > end_page ? start : end_page;
+       return max(start, end_page);
 }
 
 static inline unsigned int blkcipher_done_slow(struct crypto_blkcipher *tfm,
-
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