stage_cache: Make empty inline function if CONFIG_NO_STAGE_CACHE enable
This patch removes CONFIG_NO_STAGE_CACHE check from caller function and add empty inline function incase CONFIG_NO_STAGE_CACHE is enable. Change-Id: I8e10ef2d261f9b204cecbeae6f65fda037753534 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33394 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
@ -74,11 +74,6 @@ fail:
|
||||
halt();
|
||||
}
|
||||
|
||||
void __weak stage_cache_add(int stage_id,
|
||||
const struct prog *stage) {}
|
||||
void __weak stage_cache_load_stage(int stage_id,
|
||||
struct prog *stage) {}
|
||||
|
||||
static void ramstage_cache_invalid(void)
|
||||
{
|
||||
printk(BIOS_ERR, "ramstage cache invalid.\n");
|
||||
@ -155,8 +150,7 @@ void run_ramstage(void)
|
||||
} else if (load_nonrelocatable_ramstage(&ramstage))
|
||||
goto fail;
|
||||
|
||||
if (!CONFIG(NO_STAGE_CACHE))
|
||||
stage_cache_add(STAGE_RAMSTAGE, &ramstage);
|
||||
stage_cache_add(STAGE_RAMSTAGE, &ramstage);
|
||||
|
||||
timestamp_add_now(TS_END_COPYRAM);
|
||||
|
||||
|
Reference in New Issue
Block a user