diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-18 15:10:26 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-22 13:44:19 +0000 |
commit | ab6d94430e411f8549292d0782c07d4bbf7c19d8 (patch) | |
tree | edb08d4e0bc5d24145b9e7a9fd3442bd9d5aaaa2 /src | |
parent | a51d9b00f07a84550d25cd434497aa725d2f0820 (diff) |
src/soc/samsung: Remove unnecessary space after casts
Change-Id: I32b41eded11e4e575627fec3947a75c08fdfd0a6
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69812
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/samsung/exynos5420/fimd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/samsung/exynos5420/fimd.c b/src/soc/samsung/exynos5420/fimd.c index 53c9fe41bf..bf236d329a 100644 --- a/src/soc/samsung/exynos5420/fimd.c +++ b/src/soc/samsung/exynos5420/fimd.c @@ -182,7 +182,7 @@ static void exynos_fimd_set_clock(vidinfo_t *vid) cfg |= (EXYNOS_VIDCON0_CLKSEL_SCLK | EXYNOS_VIDCON0_CLKVALUP_ALWAYS | EXYNOS_VIDCON0_VCLKEN_NORMAL | EXYNOS_VIDCON0_CLKDIR_DIVIDED); - src_clock = (unsigned long long) get_lcd_clk(); + src_clock = (unsigned long long)get_lcd_clk(); /* get quotient and remainder. */ remainder = src_clock % pixel_clock; |