Blame view

kernel/linux-imx6_3.14.28/lib/lcm.c 288 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #include <linux/kernel.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 * b) / gcd(a, b);
  	else if (b)
  		return b;
  
  	return a;
  }
  EXPORT_SYMBOL_GPL(lcm);