summaryrefslogtreecommitdiffstats
path: root/src/drivers
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2024-02-06 22:38:14 -0800
committerFelix Held <felix-coreboot@felixheld.de>2024-02-08 13:13:58 +0000
commitb50602007656962ab6717d63d2f9d83e5c00dacf (patch)
tree16fa6d7f0b2d2f2a9c6d57671928243365673bce /src/drivers
parent3edf840ad15154d38769c0115811906284762b11 (diff)
downloadcoreboot-b50602007656962ab6717d63d2f9d83e5c00dacf.tar.gz
coreboot-b50602007656962ab6717d63d2f9d83e5c00dacf.tar.bz2
coreboot-b50602007656962ab6717d63d2f9d83e5c00dacf.zip
commonlib: Change GCD function to always use 64 bits
It seems that we have some applications where we need to calculate a GCD in 64 bits. Now, we could instantiate the algorithm multiple times for different bit width combinations to be able to use the most efficient one for each problem... but considering that the function usually only gets called once per callsite per stage, and that software emulation of 64-bit division on 32-bit systems doesn't take *that* long either, we would probably usually be paying more time loading the second instance of the function than we save with faster divisions. So let's just make things easy and always do it in 64-bit and then nobody has to spend time thinking on which version to call. Change-Id: I028361444c4048a0d76ba4f80c7334a9d9983c87 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/80319 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yidi Lin <yidilin@google.com>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/analogix/anx7625/anx7625.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/analogix/anx7625/anx7625.c b/src/drivers/analogix/anx7625/anx7625.c
index 8726ac025482..4792d07296d9 100644
--- a/src/drivers/analogix/anx7625/anx7625.c
+++ b/src/drivers/analogix/anx7625/anx7625.c
@@ -160,7 +160,7 @@ static void anx7625_reduction_of_a_fraction(u32 *_a, u32 *_b)
u32 a = *_a, b = *_b, old_a, old_b;
u32 denom = 1;
- gcd_num = gcd32(a, b);
+ gcd_num = gcd(a, b);
a /= gcd_num;
b /= gcd_num;