Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=04c7d9579f25ff0dd01efa958805f34c92bc6a71
Commit:     04c7d9579f25ff0dd01efa958805f34c92bc6a71
Parent:     75f016a7ce75220d898608791870ab7da549a430
Author:     Paul Mundt <[EMAIL PROTECTED]>
AuthorDate: Fri Jul 6 10:58:04 2007 +0900
Committer:  Paul Mundt <[EMAIL PROTECTED]>
CommitDate: Fri Jul 6 10:58:04 2007 +0900

    sh: Correct __xdiv64_32/div64_32 return value size.
    
    These should be returning a uint32_t, whereas they were erroneously
    returning a u64 before. As the register sizes are 32-bits, this doesn't
    really make a lot of sense.
    
    Reported-by: Katsuya MATSUBARA <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
---
 arch/sh/lib/div64-generic.c |    9 ++++-----
 arch/sh/lib/div64.S         |    6 +++---
 2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/arch/sh/lib/div64-generic.c b/arch/sh/lib/div64-generic.c
index c02473a..d9482cd 100644
--- a/arch/sh/lib/div64-generic.c
+++ b/arch/sh/lib/div64-generic.c
@@ -4,16 +4,15 @@
 
 #include <linux/types.h>
 
-extern u64 __xdiv64_32(u64 n, u32 d);
+extern uint32_t __xdiv64_32(u64 n, u32 d);
 
-u64 __div64_32(u64 *xp, u32 y)
+uint32_t __div64_32(u64 *xp, u32 y)
 {
-       u64 rem;
-       u64 q = __xdiv64_32(*xp, y);
+       uint32_t rem;
+       uint32_t q = __xdiv64_32(*xp, y);
 
        rem = *xp - q * y;
        *xp = q;
 
        return rem;
 }
-
diff --git a/arch/sh/lib/div64.S b/arch/sh/lib/div64.S
index eefc275..5ee7334 100644
--- a/arch/sh/lib/div64.S
+++ b/arch/sh/lib/div64.S
@@ -1,12 +1,12 @@
 /*     
- * unsigned long long __xdiv64_32(unsigned long long n, unsigned long d); 
+ * unsigned long __xdiv64_32(unsigned long long n, unsigned long d); 
  */
 
 #include <linux/linkage.h>
 
 .text
 ENTRY(__xdiv64_32)
-#ifdef  __LITTLE_ENDIAN__
+#ifdef CONFIG_CPU_LITTLE_ENDIAN
        mov     r4, r0
        mov     r5, r1
 #else
@@ -34,7 +34,7 @@ ENTRY(__xdiv64_32)
        rotcl   r0
        div1    r6, r1
        .endr
-#ifdef  __LITTLE_ENDIAN__
+#ifdef CONFIG_CPU_LITTLE_ENDIAN
        mov     r2, r1
        rts
         rotcl  r0
-
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