projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f5a5dc
)
sh: Revert __xdiv64_32 size change.
author
Paul Mundt
<lethal@linux-sh.org>
Fri, 13 Jul 2007 03:27:13 +0000
(12:27 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Fri, 13 Jul 2007 03:27:13 +0000
(12:27 +0900)
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>
arch/sh/lib/div64-generic.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/sh/lib/div64-generic.c
b/arch/sh/lib/div64-generic.c
index d9482cd2a9ea0f8586a2beecacdd3a525f40ea38..4bef3b5d964a1aecdec64923883f1424227a7d54 100644
(file)
--- a/
arch/sh/lib/div64-generic.c
+++ b/
arch/sh/lib/div64-generic.c
@@
-4,12
+4,12
@@
#include <linux/types.h>
-extern uint
32
_t __xdiv64_32(u64 n, u32 d);
+extern uint
64
_t __xdiv64_32(u64 n, u32 d);
uint32_t __div64_32(u64 *xp, u32 y)
{
uint32_t rem;
- uint
32
_t q = __xdiv64_32(*xp, y);
+ uint
64
_t q = __xdiv64_32(*xp, y);
rem = *xp - q * y;
*xp = q;