mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
19
arch/sh/lib/div64-generic.c
Normal file
19
arch/sh/lib/div64-generic.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue