[PATCH 2/2] lib/lcm.c: lcm(n,0)=lcm(0,n) is 0, not n

From: Rasmus Villemoes
Date: Tue Dec 17 2013 - 09:47:30 EST


Return the mathematically correct answer when an argument is 0.

Signed-off-by: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx>
---
I don't think there is any instance of lcm(0,n) in the kernel, but at
least this reduces code size a little.

lib/lcm.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/lib/lcm.c b/lib/lcm.c
index 01b3aa9..51cc6b1 100644
--- a/lib/lcm.c
+++ b/lib/lcm.c
@@ -8,9 +8,7 @@ unsigned long lcm(unsigned long a, unsigned long b)
{
if (a && b)
return (a / gcd(a, b)) * b;
- else if (b)
- return b;
-
- return a;
+ else
+ return 0;
}
EXPORT_SYMBOL_GPL(lcm);
--
1.8.4.rc3.2.g61bff3f

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/