From 921027e09b60b17cfd5794187b6c57341b13896c Mon Sep 17 00:00:00 2001 From: NyeonWoo Kim Date: Sat, 5 Jul 2025 16:16:25 +0900 Subject: [PATCH] src/lib/cbmem_common: Delete a space(' ') in the source code I found a space(' ') that was probably added unintentionally in the cbmem_run_init_hooks(). So i deleted it to make the code cleaner. P.S. It seems that clang-format can correct issues like it but clang-format is unusable currently. See util/lint/check-style. And this style issue of the code hasn't been corrected since 2015. So i decided to correct it manually for now. Change-Id: I788047d51c1f2586c3480efc4a31848e287c5894 Signed-off-by: NyeonWoo Kim Reviewed-on: https://review.coreboot.org/c/coreboot/+/88325 Reviewed-by: Alicja Michalska Tested-by: build bot (Jenkins) --- src/lib/cbmem_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cbmem_common.c b/src/lib/cbmem_common.c index bc3bfc911d..454c1d58c1 100644 --- a/src/lib/cbmem_common.c +++ b/src/lib/cbmem_common.c @@ -13,7 +13,7 @@ void cbmem_run_init_hooks(int is_recovery) if (REGION_SIZE(cbmem_init_hooks) == 0) return; - while (init_hook_ptr != einit_hook_ptr) { + while (init_hook_ptr != einit_hook_ptr) { (*init_hook_ptr)(is_recovery); init_hook_ptr++; }