diff options
author | Martin Roth <gaumless@gmail.com> | 2015-07-15 18:32:43 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-07-17 13:36:37 +0200 |
commit | 9346d504ca31dd5df7febe14fdab8ae400cd5307 (patch) | |
tree | 5829d7cdc472080e511670b346034d3a4e944e21 /src/cpu | |
parent | ebd3da7dba7d72b0d7a4fa50ffbad61259562447 (diff) | |
download | coreboot-9346d504ca31dd5df7febe14fdab8ae400cd5307.tar.xz |
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>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/car.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/car.c b/src/cpu/x86/car.c index b0a86b184b..b4345eae60 100644 --- a/src/cpu/x86/car.c +++ b/src/cpu/x86/car.c @@ -138,7 +138,7 @@ static void do_car_migrate_variables(void) 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(); } ROMSTAGE_CBMEM_INIT_HOOK(car_migrate_variables) |