Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_universal7904
/
892ee92b81b6e7fa5f6147c96e11c6c1b9802fc6
/
.
/
lib
/
reciprocal_div.c
blob: 6a3bd48fa2a06e500d6695ac936a6ff4143775e4 [
file
] [
log
] [
blame
]
#include
<asm/div64.h>
#include
<linux/reciprocal_div.h>
u32 reciprocal_value
(
u32 k
)
{
u64 val
=
(
1LL
<<
32
)
+
(
k
-
1
);
do_div
(
val
,
k
);
return
(
u32
)
val
;
}