summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-08-13 12:50:46 +0200
committerElyes Haouas <ehaouas@noos.fr>2023-08-14 17:08:50 +0000
commit4abc5c5e29b91187694d2dd7da8a0c80c9e588b3 (patch)
tree3806fbaf876bd7556d4a3e3e8dac1851c73d266c
parentf362bbd5c7ce5d96f4bed3adee9a8f3ccc2728e8 (diff)
downloadcoreboot-4abc5c5e29b91187694d2dd7da8a0c80c9e588b3.tar.gz
coreboot-4abc5c5e29b91187694d2dd7da8a0c80c9e588b3.tar.bz2
coreboot-4abc5c5e29b91187694d2dd7da8a0c80c9e588b3.zip
soc/mediatek/mt8173/mt6391: Remove space before semicolon
Change-Id: I88668d8c69da68cc28bae287f573f650f28da32e Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77157 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yidi Lin <yidilin@google.com> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
-rw-r--r--src/soc/mediatek/mt8173/mt6391.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8173/mt6391.c b/src/soc/mediatek/mt8173/mt6391.c
index 9c8f1538b060..2186c063c165 100644
--- a/src/soc/mediatek/mt8173/mt6391.c
+++ b/src/soc/mediatek/mt8173/mt6391.c
@@ -25,7 +25,7 @@ int mt6391_configure_ca53_voltage(int uv)
/* For buck delay, default slew rate is 6.25mv/0.5us */
if (buck_val > current_val)
- return ((buck_val - current_val) / 2) ;
+ return ((buck_val - current_val) / 2);
else
return 0;
}