diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-08-13 12:54:55 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-08-20 22:00:03 +0000 |
commit | d14f0a04f431668f93b68ddb4dfd9ce6d2421886 (patch) | |
tree | c6f48acfe88bcc20506d0cc9fcc8dfeb3d443faf /src/soc | |
parent | ebb1694e859c0aff9975ad6db454e3f9edc3d3c0 (diff) |
soc/samsung/exynos5250/clock: Remove space before semicolon
Change-Id: Id0adfd0e25806aef836f75e83ff86a55a5d799d6
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77160
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/samsung/exynos5250/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/samsung/exynos5250/clock.c b/src/soc/samsung/exynos5250/clock.c index 1cce511bcb..a4b573f185 100644 --- a/src/soc/samsung/exynos5250/clock.c +++ b/src/soc/samsung/exynos5250/clock.c @@ -636,7 +636,7 @@ void clock_select_i2s_clk_source(void) int clock_set_i2s_clk_prescaler(unsigned int src_frq, unsigned int dst_frq) { - unsigned int div ; + unsigned int div; if ((dst_frq == 0) || (src_frq == 0)) { printk(BIOS_DEBUG, "%s: Invalid frequency input for prescaler\n", __func__); |