Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77156?usp=email )
Change subject: soc/rockchip/rk3399/mipi: Remove space before semicolon ......................................................................
soc/rockchip/rk3399/mipi: Remove space before semicolon
Change-Id: I7e02173c296689ef3143a1079658006ec91c4dc2 Signed-off-by: Elyes Haouas ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/77156 Reviewed-by: Felix Singer service+coreboot-gerrit@felixsinger.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/rockchip/rk3399/mipi.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Felix Singer: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/soc/rockchip/rk3399/mipi.c b/src/soc/rockchip/rk3399/mipi.c index 41d661e..d679cfe 100644 --- a/src/soc/rockchip/rk3399/mipi.c +++ b/src/soc/rockchip/rk3399/mipi.c @@ -543,7 +543,7 @@ 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 @@ 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");