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