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 <knw0507@naver.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/88325
Reviewed-by: Alicja Michalska <ahplka19@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
NyeonWoo Kim 2025-07-05 16:16:25 +09:00 committed by Matt DeVillier
commit 921027e09b

View file

@ -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++;
}