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