Remove unused Kconfig symbols in c code

The BROKEN_CAR_MIGRATE symbol was removed in commit a6371940 -
x86 cache-as-ram: Remove BROKEN_CAR_MIGRATE option

The symbol DISABLE_SANDYBRIDGE_HYPERTHREADING is from Sage, and was
never added to the coreboot.org codebase.

Change-Id: I953fe7c46106634a5a3fcdaff88b39e884f152e6
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: http://review.coreboot.org/10941
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Martin Roth 2015-07-15 18:32:43 -06:00 committed by Patrick Georgi
parent ebd3da7dba
commit 9346d504ca
2 changed files with 1 additions and 5 deletions

View File

@ -138,7 +138,7 @@ static void do_car_migrate_variables(void)
static void car_migrate_variables(int is_recovery) static void car_migrate_variables(int is_recovery)
{ {
if (!IS_ENABLED(CONFIG_BROKEN_CAR_MIGRATE) && !IS_ENABLED(PLATFORM_USES_FSP1_0)) if (!IS_ENABLED(PLATFORM_USES_FSP1_0))
do_car_migrate_variables(); do_car_migrate_variables();
} }
ROMSTAGE_CBMEM_INIT_HOOK(car_migrate_variables) ROMSTAGE_CBMEM_INIT_HOOK(car_migrate_variables)

View File

@ -53,11 +53,7 @@ static void ConfigureDefaultUpdData(UPD_DATA_REGION *UpdData)
} }
#else /* IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_FSP_I89XX) */ #else /* IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_FSP_I89XX) */
const PLATFORM_CONFIG DefaultPlatformConfig = { const PLATFORM_CONFIG DefaultPlatformConfig = {
#if IS_ENABLED(CONFIG_DISABLE_SANDYBRIDGE_HYPERTHREADING)
FALSE, /* Hyperthreading */
#else
TRUE, /* Hyperthreading */ TRUE, /* Hyperthreading */
#endif
FALSE, /* Turbo Mode */ FALSE, /* Turbo Mode */
FALSE, /* Memory Down */ FALSE, /* Memory Down */
#if IS_ENABLED(CONFIG_ENABLE_FSP_FAST_BOOT) #if IS_ENABLED(CONFIG_ENABLE_FSP_FAST_BOOT)