diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-09-23 11:45:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-23 14:34:43 -0400 |
commit | 2efc80cb8ddc341d81de996920e3b2ad8a12b1f7 (patch) | |
tree | 029c820b78fd8eeaf9e378c79cb818382f93a781 /include/asm-ppc/ibm4xx.h | |
parent | 13b5aeccc4350e5069c723e8f9becd7208ee02f2 (diff) |
[PATCH] #elif that should've been #elif defined
#elif CONFIG_44x
in ibm4xx.h should've been
#elif defined(CONFIG_44x)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-ppc/ibm4xx.h')
-rw-r--r-- | include/asm-ppc/ibm4xx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ppc/ibm4xx.h b/include/asm-ppc/ibm4xx.h index cf62b69cb69a..499c14691c71 100644 --- a/include/asm-ppc/ibm4xx.h +++ b/include/asm-ppc/ibm4xx.h | |||
@@ -86,7 +86,7 @@ void ppc4xx_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
86 | #define PCI_DRAM_OFFSET 0 | 86 | #define PCI_DRAM_OFFSET 0 |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | #elif CONFIG_44x | 89 | #elif defined(CONFIG_44x) |
90 | 90 | ||
91 | #if defined(CONFIG_BAMBOO) | 91 | #if defined(CONFIG_BAMBOO) |
92 | #include <platforms/4xx/bamboo.h> | 92 | #include <platforms/4xx/bamboo.h> |