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:
@ -102,9 +102,9 @@ cpu_reset_x:
|
||||
:"=a" (new_cpu_reset)
|
||||
);
|
||||
|
||||
#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 */
|
||||
|
@ -102,9 +102,9 @@ cpu_reset_x:
|
||||
:"=a" (new_cpu_reset)
|
||||
);
|
||||
|
||||
#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 */
|
||||
|
@ -28,8 +28,8 @@
|
||||
#include <clock.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define CONFIG_SDRAM_BANK0
|
||||
#ifdef CONFIG_SDRAM_BANK0
|
||||
#define CONFIGURE_SDRAM_BANK0
|
||||
#ifdef CONFIGURE_SDRAM_BANK0
|
||||
|
||||
/*
|
||||
* According to the PPC405GPr Users Manual, only non-reserved
|
||||
@ -130,4 +130,4 @@ void memory_init(void)
|
||||
udelay(10000);
|
||||
}
|
||||
|
||||
#endif /* CONFIG_SDRAM_BANK0 */
|
||||
#endif /* CONFIGURE_SDRAM_BANK0 */
|
||||
|
@ -131,7 +131,7 @@ clear_fixed_var_mtrr_out:
|
||||
movl $(CacheBase+CacheSize-4), %eax
|
||||
movl %eax, %esp
|
||||
|
||||
#ifdef CONFIG_CARTEST
|
||||
#ifdef CARTEST
|
||||
testok: movb $0x40,%al
|
||||
outb %al, $0x80
|
||||
xorl %edx, %edx
|
||||
|
Reference in New Issue
Block a user