src/: Fix Kcofig symbols missing CONFIG_ prefix
- Add CONFIG_ prefix to two symbols. - Remove the use of the third symbol as it will never be matched. Change-Id: Ifa7f6884001cb05fb8397f193c4b08a0161f498c Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/13539 Tested-by: build bot (Jenkins) Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
9ab9c33d7d
commit
1010868f87
|
@ -72,7 +72,7 @@ static inline __attribute__((always_inline)) void disable_cache_as_ram(uint8_t s
|
||||||
|
|
||||||
family = amd_fam1x_cpu_family();
|
family = amd_fam1x_cpu_family();
|
||||||
|
|
||||||
#if IS_ENABLED(CPU_AMD_MODEL_10XXX)
|
#if IS_ENABLED(CONFIG_CPU_AMD_MODEL_10XXX)
|
||||||
if (family >= 0x6f) {
|
if (family >= 0x6f) {
|
||||||
/* Family 15h or later */
|
/* Family 15h or later */
|
||||||
|
|
||||||
|
|
|
@ -171,7 +171,7 @@ void romstage_fsp_rt_buffer_callback(FSP_INIT_RT_BUFFER *FspRtBuffer)
|
||||||
UpdData->AzaliaConfigPtr = (UINT32)&mainboard_AzaliaConfig;
|
UpdData->AzaliaConfigPtr = (UINT32)&mainboard_AzaliaConfig;
|
||||||
|
|
||||||
/* Disable 2nd DIMM on Bakersport*/
|
/* Disable 2nd DIMM on Bakersport*/
|
||||||
#if IS_ENABLED(BOARD_INTEL_BAKERSPORT_FSP)
|
#if IS_ENABLED(CONFIG_BOARD_INTEL_BAKERSPORT_FSP)
|
||||||
UpdData->PcdMrcInitSPDAddr2 = 0x00; /* cannot use SPD_ADDR_DISABLED at this point */
|
UpdData->PcdMrcInitSPDAddr2 = 0x00; /* cannot use SPD_ADDR_DISABLED at this point */
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,10 +172,6 @@ void romstage_fsp_rt_buffer_callback(FSP_INIT_RT_BUFFER *FspRtBuffer)
|
||||||
/* Initialize the Azalia Verb Tables to mainboard specific version */
|
/* Initialize the Azalia Verb Tables to mainboard specific version */
|
||||||
UpdData->AzaliaConfigPtr = (UINT32)&mainboard_AzaliaConfig;
|
UpdData->AzaliaConfigPtr = (UINT32)&mainboard_AzaliaConfig;
|
||||||
|
|
||||||
/* Disable 2nd DIMM on Bakersport*/
|
|
||||||
#if IS_ENABLED(BOARD_INTEL_BAKERSPORT_FSP)
|
|
||||||
UpdData->PcdMrcInitSPDAddr2 = 0x00; /* cannot use SPD_ADDR_DISABLED at this point */
|
|
||||||
#endif
|
|
||||||
/* Get SPD data from hardware information block and setup memory down */
|
/* Get SPD data from hardware information block and setup memory down */
|
||||||
/* parameters for FSP accordingly */
|
/* parameters for FSP accordingly */
|
||||||
hwi_main = get_hwinfo((char*)"hwinfo.hex");
|
hwi_main = get_hwinfo((char*)"hwinfo.hex");
|
||||||
|
|
Loading…
Reference in New Issue