Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
bfe172310e58225f0d07f9354b683abacbd6a0d8
/
.
/
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
;
}