Unify use of bool config variables
e.g. -#if CONFIG_LOGICAL_CPUS == 1 +#if CONFIG_LOGICAL_CPUS This will make it easier to switch over to use the config_enabled() macro later on. Change-Id: I0bcf223669318a7b1105534087c7675a74c1dd8a Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1874 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
committed by
Patrick Georgi
parent
82ecf4c582
commit
8ada1526df
@@ -202,7 +202,7 @@ CONST MANUAL_BUID_SWAP_LIST ROMDATA s8226_manual_swaplist[2] =
|
||||
}
|
||||
};
|
||||
|
||||
#if CONFIG_HT3_SUPPORT == 1
|
||||
#if CONFIG_HT3_SUPPORT
|
||||
/**
|
||||
* The socket and link match values are platform specific
|
||||
*
|
||||
@@ -439,10 +439,10 @@ CONST AP_MTRR_SETTINGS ROMDATA s8226_ap_mtrr_list[] =
|
||||
#define AGESA_ENTRY_INIT_GENERAL_SERVICES TRUE
|
||||
|
||||
/*
|
||||
#if (CONFIG_CPU_AMD_AGESA_FAMILY15 == 1)
|
||||
#if CONFIG_CPU_AMD_AGESA_FAMILY15
|
||||
#define BLDOPT_REMOVE_FAMILY_10_SUPPORT TRUE
|
||||
#endif
|
||||
#if (CONFIG_CPU_AMD_AGESA_FAMILY10 == 1)
|
||||
#if CONFIG_CPU_AMD_AGESA_FAMILY10
|
||||
#define BLDOPT_REMOVE_FAMILY_15_SUPPORT TRUE
|
||||
#endif
|
||||
*/
|
||||
|
Reference in New Issue
Block a user