Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=075fc19bdea9120989142fa2179abd958b3a5c72
Commit:     075fc19bdea9120989142fa2179abd958b3a5c72
Parent:     2f5a5dc0c1a9e970ceb9b47d778732962d6dd9f6
Author:     Paul Mundt <[EMAIL PROTECTED]>
AuthorDate: Fri Jul 13 12:27:13 2007 +0900
Committer:  Paul Mundt <[EMAIL PROTECTED]>
CommitDate: Fri Jul 13 12:27:13 2007 +0900

    sh: Revert __xdiv64_32 size change.
    
    It's only __div64_32 that needs the fix, __xdiv64_32 behaves as
    expected with the original size.
    
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
---
 arch/sh/lib/div64-generic.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/sh/lib/div64-generic.c b/arch/sh/lib/div64-generic.c
index d9482cd..4bef3b5 100644
--- a/arch/sh/lib/div64-generic.c
+++ b/arch/sh/lib/div64-generic.c
@@ -4,12 +4,12 @@
 
 #include <linux/types.h>
 
-extern uint32_t __xdiv64_32(u64 n, u32 d);
+extern uint64_t __xdiv64_32(u64 n, u32 d);
 
 uint32_t __div64_32(u64 *xp, u32 y)
 {
        uint32_t rem;
-       uint32_t q = __xdiv64_32(*xp, y);
+       uint64_t q = __xdiv64_32(*xp, y);
 
        rem = *xp - q * y;
        *xp = q;
-
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