diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-10-17 13:25:07 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-10-17 13:25:07 +0000 |
commit | 0bc615482e34af308712be970479aeb613f5fa41 (patch) | |
tree | aaf65180b43b30302880d95cd349b3de15046964 /src/cpu/ppc | |
parent | d7b37b0a670abc24e538700c0e2762f1cde7faf7 (diff) | |
download | coreboot-0bc615482e34af308712be970479aeb613f5fa41.tar.xz |
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
Diffstat (limited to 'src/cpu/ppc')
-rw-r--r-- | src/cpu/ppc/ppc4xx/sdram.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/ppc/ppc4xx/sdram.c b/src/cpu/ppc/ppc4xx/sdram.c index f7a508b4fd..17d07c769a 100644 --- a/src/cpu/ppc/ppc4xx/sdram.c +++ b/src/cpu/ppc/ppc4xx/sdram.c @@ -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 */ |