commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
27 lines
482 B
C
27 lines
482 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
#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);
|