Release 4.14 arch/sh/lib/div64-generic.c
// SPDX-License-Identifier: GPL-2.0
/*
* Generic __div64_32 wrapper for __xdiv64_32.
*/
#include <linux/types.h>
#include <asm/div64.h>
extern uint64_t __xdiv64_32(u64 n, u32 d);
uint32_t __div64_32(u64 *xp, u32 y)
{
uint32_t rem;
uint64_t q = __xdiv64_32(*xp, y);
rem = *xp - q * y;
*xp = q;
return rem;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 40 | 93.02% | 1 | 33.33% |
Paul Mundt | 3 | 6.98% | 2 | 66.67% |
Total | 43 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 54 | 87.10% | 1 | 20.00% |
Paul Mundt | 7 | 11.29% | 3 | 60.00% |
Greg Kroah-Hartman | 1 | 1.61% | 1 | 20.00% |
Total | 62 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.