#include #include #include /* 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); xt.git/atom/drivers/net/ethernet/broadcom?h=master' type='application/atom+xml'/>
summaryrefslogtreecommitdiff