diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-08-13 12:50:46 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-08-14 17:08:50 +0000 |
commit | 4abc5c5e29b91187694d2dd7da8a0c80c9e588b3 (patch) | |
tree | 3806fbaf876bd7556d4a3e3e8dac1851c73d266c /src/soc/mediatek | |
parent | f362bbd5c7ce5d96f4bed3adee9a8f3ccc2728e8 (diff) |
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>
Diffstat (limited to 'src/soc/mediatek')
-rw-r--r-- | src/soc/mediatek/mt8173/mt6391.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8173/mt6391.c b/src/soc/mediatek/mt8173/mt6391.c index 9c8f1538b0..2186c063c1 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; } |