mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
04c7d9579f
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 <matsu@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
19 lines
260 B
C
19 lines
260 B
C
/*
|
|
* Generic __div64_32 wrapper for __xdiv64_32.
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
|
|
extern uint32_t __xdiv64_32(u64 n, u32 d);
|
|
|
|
uint32_t __div64_32(u64 *xp, u32 y)
|
|
{
|
|
uint32_t rem;
|
|
uint32_t q = __xdiv64_32(*xp, y);
|
|
|
|
rem = *xp - q * y;
|
|
*xp = q;
|
|
|
|
return rem;
|
|
}
|