aboutsummaryrefslogtreecommitdiffstats
path: root/lib/div64.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/div64.c')
-rw-r--r--lib/div64.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/div64.c b/lib/div64.c
index 7f345259c32f..5660e8233293 100644
--- a/lib/div64.c
+++ b/lib/div64.c
@@ -60,6 +60,12 @@ uint32_t __attribute__((weak)) __div64_32(uint64_t *n, uint32_t base)
60EXPORT_SYMBOL(__div64_32); 60EXPORT_SYMBOL(__div64_32);
61#endif 61#endif
62 62
63/**
64 * div_s64_rem - signed 64bit divide with 64bit divisor and remainder
65 * @dividend: 64bit dividend
66 * @divisor: 64bit divisor
67 * @remainder: 64bit remainder
68 */
63#ifndef div_s64_rem 69#ifndef div_s64_rem
64s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder) 70s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder)
65{ 71{