diff options
author | Paul Mackerras <paulus@samba.org> | 2008-10-31 06:34:09 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-10-31 06:34:09 -0400 |
commit | ebdba9af940d63e469dc8e46b4aa1fc474e8ee2d (patch) | |
tree | b17fb7f5de11c2604aa764b08ad6930528d3bfaa /arch | |
parent | 8ba4773aee23a5e2e1ce386c5bd86e407496de99 (diff) |
powerpc: Fix compile errors with CONFIG_BUG=n
This makes sure we don't try to call find_bug or is_warning_bug when
CONFIG_BUG=n and CONFIG_XMON=y. Otherwise we get these errors:
arch/powerpc/xmon/xmon.c: In function ‘print_bug_trap’:
arch/powerpc/xmon/xmon.c:1364: error: implicit declaration of function ‘find_bug’
arch/powerpc/xmon/xmon.c:1364: warning: assignment makes pointer from integer without a cast
arch/powerpc/xmon/xmon.c:1367: error: implicit declaration of function ‘is_warning_bug’
arch/powerpc/xmon/xmon.c:1374: error: dereferencing pointer to incomplete type
make[2]: *** [arch/powerpc/xmon/xmon.o] Error 1
make[1]: *** [arch/powerpc/xmon] Error 2
make: *** [sub-make] Error 2
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/xmon/xmon.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 34c3d0688fe0..076368c8b8a9 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c | |||
@@ -1353,6 +1353,7 @@ static void backtrace(struct pt_regs *excp) | |||
1353 | 1353 | ||
1354 | static void print_bug_trap(struct pt_regs *regs) | 1354 | static void print_bug_trap(struct pt_regs *regs) |
1355 | { | 1355 | { |
1356 | #ifdef CONFIG_BUG | ||
1356 | const struct bug_entry *bug; | 1357 | const struct bug_entry *bug; |
1357 | unsigned long addr; | 1358 | unsigned long addr; |
1358 | 1359 | ||
@@ -1373,6 +1374,7 @@ static void print_bug_trap(struct pt_regs *regs) | |||
1373 | #else | 1374 | #else |
1374 | printf("kernel BUG at %p!\n", (void *)bug->bug_addr); | 1375 | printf("kernel BUG at %p!\n", (void *)bug->bug_addr); |
1375 | #endif | 1376 | #endif |
1377 | #endif /* CONFIG_BUG */ | ||
1376 | } | 1378 | } |
1377 | 1379 | ||
1378 | static void excprint(struct pt_regs *fp) | 1380 | static void excprint(struct pt_regs *fp) |