diff options
Diffstat (limited to 'arch/powerpc/xmon/xmon.c')
-rw-r--r-- | arch/powerpc/xmon/xmon.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index bf299b66f3fc..f12687d0354d 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c | |||
@@ -1360,8 +1360,12 @@ static void print_bug_trap(struct pt_regs *regs) | |||
1360 | if (is_warning_bug(bug)) | 1360 | if (is_warning_bug(bug)) |
1361 | return; | 1361 | return; |
1362 | 1362 | ||
1363 | #ifdef CONFIG_DEBUG_BUGVERBOSE | ||
1363 | printf("kernel BUG at %s:%u!\n", | 1364 | printf("kernel BUG at %s:%u!\n", |
1364 | bug->file, bug->line); | 1365 | bug->file, bug->line); |
1366 | #else | ||
1367 | printf("kernel BUG at %p!\n", (void *)bug->bug_addr); | ||
1368 | #endif | ||
1365 | } | 1369 | } |
1366 | 1370 | ||
1367 | void excprint(struct pt_regs *fp) | 1371 | void excprint(struct pt_regs *fp) |