mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
[PATCH] m68knommu: check DEBUG defined arch code
Don't rely on DEBUG having a value, check for it being defined. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
6f57622a32
commit
bb28632c0d
@ -608,7 +608,7 @@ adjust_stack:
|
||||
if (regs->stkadj) {
|
||||
struct pt_regs *tregs =
|
||||
(struct pt_regs *)((ulong)regs + regs->stkadj);
|
||||
#if DEBUG
|
||||
#if defined(DEBUG)
|
||||
printk(KERN_DEBUG "Performing stackadjust=%04x\n", regs->stkadj);
|
||||
#endif
|
||||
/* This must be copied with decreasing addresses to
|
||||
@ -678,7 +678,7 @@ adjust_stack:
|
||||
if (regs->stkadj) {
|
||||
struct pt_regs *tregs =
|
||||
(struct pt_regs *)((ulong)regs + regs->stkadj);
|
||||
#if DEBUG
|
||||
#if defined(DEBUG)
|
||||
printk(KERN_DEBUG "Performing stackadjust=%04x\n", regs->stkadj);
|
||||
#endif
|
||||
/* This must be copied with decreasing addresses to
|
||||
|
@ -93,12 +93,12 @@ asmlinkage void buserr_c(struct frame *fp)
|
||||
if (user_mode(&fp->ptregs))
|
||||
current->thread.esp0 = (unsigned long) fp;
|
||||
|
||||
#if DEBUG
|
||||
#if defined(DEBUG)
|
||||
printk (KERN_DEBUG "*** Bus Error *** Format is %x\n", fp->ptregs.format);
|
||||
#endif
|
||||
|
||||
die_if_kernel("bad frame format",&fp->ptregs,0);
|
||||
#if DEBUG
|
||||
#if defined(DEBUG)
|
||||
printk(KERN_DEBUG "Unknown SIGSEGV - 4\n");
|
||||
#endif
|
||||
force_sig(SIGSEGV, current);
|
||||
|
Loading…
Reference in New Issue
Block a user