summaryrefslogtreecommitdiffstats
path: root/arch/avr32/cpu
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2012-12-13 20:49:09 +0000
committerTom Rini <trini@ti.com>2013-02-04 09:05:44 -0500
commit1c865d58974cf3a45f87e65c3f348b5b9e398990 (patch)
tree6edfdff0e220bc732ced20a611edd2568f427d0e /arch/avr32/cpu
parent035cbe99cd2fd4adf9d7fd95aeebb5f814e37eb9 (diff)
downloadblackbird-obmc-uboot-1c865d58974cf3a45f87e65c3f348b5b9e398990.tar.gz
blackbird-obmc-uboot-1c865d58974cf3a45f87e65c3f348b5b9e398990.zip
avr32: Move stack_end to arch_global_data
Move this field into arch_global_data and tidy up. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/avr32/cpu')
-rw-r--r--arch/avr32/cpu/exception.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/avr32/cpu/exception.c b/arch/avr32/cpu/exception.c
index b21ef1f928..828fc00a49 100644
--- a/arch/avr32/cpu/exception.c
+++ b/arch/avr32/cpu/exception.c
@@ -112,11 +112,11 @@ void do_unknown_exception(unsigned int ecr, struct pt_regs *regs)
printf("CPU Mode: %s\n", cpu_modes[mode]);
/* Avoid exception loops */
- if (regs->sp < (gd->stack_end - CONFIG_STACKSIZE)
- || regs->sp >= gd->stack_end)
+ if (regs->sp < (gd->arch.stack_end - CONFIG_STACKSIZE)
+ || regs->sp >= gd->arch.stack_end)
printf("\nStack pointer seems bogus, won't do stack dump\n");
else
- dump_mem("\nStack: ", regs->sp, gd->stack_end);
+ dump_mem("\nStack: ", regs->sp, gd->arch.stack_end);
panic("Unhandled exception\n");
}
OpenPOWER on IntegriCloud