summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-11-18 15:04:34 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-11-22 12:59:56 +0000
commit4d685d433a1c189302e1c2c95ed1a989647c9161 (patch)
treeb20b33cf818f0533bfc0b15f4ee095d6bc86e785
parentb538d71e3230552e2942a83e61dd132693d5241c (diff)
src/cpu: Remove unnecessary space after casts
Change-Id: I12463d4d26c03c85fa018b421bb9166fbfeb0b60 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69801 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/cpu/intel/car/romstage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/car/romstage.c b/src/cpu/intel/car/romstage.c
index 4c68ded1ee..c7c218b8ed 100644
--- a/src/cpu/intel/car/romstage.c
+++ b/src/cpu/intel/car/romstage.c
@@ -32,7 +32,7 @@ void __noreturn romstage_main(void)
printk(BIOS_DEBUG, "Romstage stack size limited to 0x%x!\n",
size);
- stack_base = (u32 *) (_ecar_stack - size);
+ stack_base = (u32 *)(_ecar_stack - size);
for (i = 0; i < num_guards; i++)
stack_base[i] = stack_guard;