android_kernel_samsung_a23q/lib/lcm.c
rsuntk f8c4f3d6f4 Import from latest A23q source
Signed-off-by: rsuntk <rissu.ntk@gmail.com>
2025-03-08 14:06:30 +00:00

25 lines
441 B
C
Executable file

#include <linux/compiler.h>
#include <linux/gcd.h>
#include <linux/export.h>
#include <linux/lcm.h>
/* Lowest common multiple */
unsigned long lcm(unsigned long a, unsigned long b)
{
if (a && b)
return (a / gcd(a, b)) * b;
else
return 0;
}
EXPORT_SYMBOL_GPL(lcm);
unsigned long lcm_not_zero(unsigned long a, unsigned long b)
{
unsigned long l = lcm(a, b);
if (l)
return l;
return (b ? : a);
}
EXPORT_SYMBOL_GPL(lcm_not_zero);