Skip to content

Commit

Permalink
[PATCH] #elif that should've been #elif defined
Browse files Browse the repository at this point in the history
 #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>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Sep 23, 2006
1 parent 13b5aec commit 2efc80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-ppc/ibm4xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void ppc4xx_init(unsigned long r3, unsigned long r4, unsigned long r5,
#define PCI_DRAM_OFFSET 0
#endif

#elif CONFIG_44x
#elif defined(CONFIG_44x)

#if defined(CONFIG_BAMBOO)
#include <platforms/4xx/bamboo.h>
Expand Down

0 comments on commit 2efc80c

Please sign in to comment.