src: Update bare access to BOOL CONFIG_ vals to CONFIG()
BOOL type Kconfig values should be used through the CONFIG() macro. These instances were not, so update them. Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: Ie4706d82c12c487607bbf5ad8059922e0e586858 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43825 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
committed by
Patrick Georgi
parent
f48acbda7b
commit
c25c1ebd9e
@@ -103,7 +103,7 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
||||
params->CpuMpPpi = (uintptr_t) mp_fill_ppi_services_data();
|
||||
params->SkipMpInit = 0;
|
||||
} else {
|
||||
params->SkipMpInit = !CONFIG_USE_INTEL_FSP_MP_INIT;
|
||||
params->SkipMpInit = !CONFIG(USE_INTEL_FSP_MP_INIT);
|
||||
}
|
||||
|
||||
/* Chipset Lockdown */
|
||||
@@ -123,7 +123,7 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
||||
params->EndOfPostMessage = EOP_PEI;
|
||||
|
||||
/* Legacy 8254 timer support */
|
||||
params->Enable8254ClockGating = !CONFIG_USE_LEGACY_8254_TIMER;
|
||||
params->Enable8254ClockGating = !CONFIG(USE_LEGACY_8254_TIMER);
|
||||
params->Enable8254ClockGatingOnS3 = 1;
|
||||
|
||||
/* disable Legacy PME */
|
||||
|
Reference in New Issue
Block a user