From 4b6d368d12eeec04f335fec42d5b94cee38cead2 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sun, 13 Aug 2023 12:49:16 +0200 Subject: [PATCH] soc/rockchip/rk3399/mipi: Remove space before semicolon Change-Id: I7e02173c296689ef3143a1079658006ec91c4dc2 Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/77156 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) --- src/soc/rockchip/rk3399/mipi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/rockchip/rk3399/mipi.c b/src/soc/rockchip/rk3399/mipi.c index 41d661e6cf..d679cfe5cc 100644 --- a/src/soc/rockchip/rk3399/mipi.c +++ b/src/soc/rockchip/rk3399/mipi.c @@ -543,7 +543,7 @@ static int rk_mipi_dsi_check_fifo(struct rk_mipi_dsi *dsi, u32 flag) do { val = read32(&dsi->mipi_regs->dsi_cmd_pkt_status); if (!(val & flag)) - return 0 ; + return 0; } while (!stopwatch_expired(&sw)); return -1; @@ -567,7 +567,7 @@ static int rk_mipi_dsi_gen_pkt_hdr_write(struct rk_mipi_dsi *dsi, u32 hdr_val) do { val = read32(&dsi->mipi_regs->dsi_cmd_pkt_status); if ((val & mask) == mask) - return 0 ; + return 0; } while (!stopwatch_expired(&sw)); printk(BIOS_ERR, "failed to write command FIFO\n");