#include #include #include #include /* 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); pository'/>
summaryrefslogtreecommitdiff
ext.git/log/include/acpi/acpi_numa.h?h=nds-private-remove&id=90c1aff702d449a1a248c4829d51c0bc677f968e&showmsg=1'>Expand)
AgeCommit message (Expand)AuthorFilesLines
AuthorFilesLines