ebddada48d
Change-Id: I54eda3d51ecda77309841e598f06eb9cea3babc1 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41671 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
20 lines
445 B
C
20 lines
445 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <cbmem.h>
|
|
#include <symbols.h>
|
|
|
|
void cbmem_run_init_hooks(int is_recovery)
|
|
{
|
|
cbmem_init_hook_t *init_hook_ptr =
|
|
(cbmem_init_hook_t *)&_cbmem_init_hooks;
|
|
cbmem_init_hook_t *einit_hook_ptr =
|
|
(cbmem_init_hook_t *)&_ecbmem_init_hooks;
|
|
|
|
if (REGION_SIZE(cbmem_init_hooks) == 0)
|
|
return;
|
|
|
|
while (init_hook_ptr != einit_hook_ptr) {
|
|
(*init_hook_ptr)(is_recovery);
|
|
init_hook_ptr++;
|
|
}
|
|
}
|