diff options
| author | Paul Mundt <lethal@linux-sh.org> | 2007-07-12 23:27:13 -0400 |
|---|---|---|
| committer | Paul Mundt <lethal@linux-sh.org> | 2007-07-12 23:27:13 -0400 |
| commit | 075fc19bdea9120989142fa2179abd958b3a5c72 (patch) | |
| tree | a6d9c567650810d35847350e39bb8e601a7e36d8 | |
| parent | 2f5a5dc0c1a9e970ceb9b47d778732962d6dd9f6 (diff) | |
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 <lethal@linux-sh.org>
| -rw-r--r-- | 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 d9482cd2a9ea..4bef3b5d964a 100644 --- a/arch/sh/lib/div64-generic.c +++ b/arch/sh/lib/div64-generic.c | |||
| @@ -4,12 +4,12 @@ | |||
| 4 | 4 | ||
| 5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
| 6 | 6 | ||
| 7 | extern uint32_t __xdiv64_32(u64 n, u32 d); | 7 | extern uint64_t __xdiv64_32(u64 n, u32 d); |
| 8 | 8 | ||
| 9 | uint32_t __div64_32(u64 *xp, u32 y) | 9 | uint32_t __div64_32(u64 *xp, u32 y) |
| 10 | { | 10 | { |
| 11 | uint32_t rem; | 11 | uint32_t rem; |
| 12 | uint32_t q = __xdiv64_32(*xp, y); | 12 | uint64_t q = __xdiv64_32(*xp, y); |
| 13 | 13 | ||
| 14 | rem = *xp - q * y; | 14 | rem = *xp - q * y; |
| 15 | *xp = q; | 15 | *xp = q; |
