From f0ed2737287a06557c43616aa8e0f69c1c852e39 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sat, 9 Sep 2023 08:53:10 +0200 Subject: [PATCH] sb/intel/common: Remove space after a cast Change-Id: Ic3e9570c110d8cded8c00e74fff29cc3a711582e Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/77737 Tested-by: build bot (Jenkins) Reviewed-by: Felix Singer --- src/southbridge/intel/common/spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/southbridge/intel/common/spi.c b/src/southbridge/intel/common/spi.c index 75e9b21219..c984c6d435 100644 --- a/src/southbridge/intel/common/spi.c +++ b/src/southbridge/intel/common/spi.c @@ -788,7 +788,7 @@ static int ich_hwseq_read(const struct spi_flash *flash, u32 addr, size_t len, printk(BIOS_ERR, "Attempt to read %x-%x which is out of chip\n", (unsigned int)addr, - (unsigned int)addr+(unsigned int) len); + (unsigned int)addr+(unsigned int)len); return -1; }