Remove CONFIG_ from #defines that aren't config variables. Trivial.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4802 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
d7b37b0a67
commit
0bc615482e
11 changed files with 22 additions and 22 deletions
|
|
@ -256,9 +256,9 @@ cpu_reset_x:
|
|||
print_debug("new_cpu_reset = "); print_debug_hex32(new_cpu_reset); print_debug("\r\n");
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_DEACTIVATE_CAR
|
||||
#ifdef DEACTIVATE_CAR
|
||||
print_debug("Deactivating CAR");
|
||||
#include CONFIG_DEACTIVATE_CAR_FILE
|
||||
#include DEACTIVATE_CAR_FILE
|
||||
print_debug(" - Done.\r\n");
|
||||
#endif
|
||||
/*copy and execute coreboot_ram */
|
||||
|
|
|
|||
|
|
@ -35,8 +35,8 @@
|
|||
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
||||
#define CONFIG_DEACTIVATE_CAR 1
|
||||
#define CONFIG_DEACTIVATE_CAR_FILE "cpu/via/car/cache_as_ram_post.c"
|
||||
#define DEACTIVATE_CAR 1
|
||||
#define DEACTIVATE_CAR_FILE "cpu/via/car/cache_as_ram_post.c"
|
||||
#include "cpu/x86/car/copy_and_run.c"
|
||||
#include "pc80/udelay_io.c"
|
||||
#include "lib/delay.c"
|
||||
|
|
@ -120,9 +120,9 @@ static void main(unsigned long bist)
|
|||
enable_shadow_ram(cx700);
|
||||
sdram_enable(cx700);
|
||||
|
||||
#ifdef CONFIG_DEACTIVATE_CAR
|
||||
#ifdef DEACTIVATE_CAR
|
||||
print_debug("Deactivating CAR");
|
||||
#include CONFIG_DEACTIVATE_CAR_FILE
|
||||
#include DEACTIVATE_CAR_FILE
|
||||
print_debug(" - Done.\r\n");
|
||||
#endif
|
||||
copy_and_run(0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue