diff options
author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:49:09 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:44 -0500 |
commit | 1c865d58974cf3a45f87e65c3f348b5b9e398990 (patch) | |
tree | 6edfdff0e220bc732ced20a611edd2568f427d0e /arch/avr32/cpu | |
parent | 035cbe99cd2fd4adf9d7fd95aeebb5f814e37eb9 (diff) | |
download | u-boot-imx-1c865d58974cf3a45f87e65c3f348b5b9e398990.zip u-boot-imx-1c865d58974cf3a45f87e65c3f348b5b9e398990.tar.gz u-boot-imx-1c865d58974cf3a45f87e65c3f348b5b9e398990.tar.bz2 |
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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/avr32/cpu/exception.c b/arch/avr32/cpu/exception.c index b21ef1f..828fc00 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"); } |