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/include | |
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/include')
-rw-r--r-- | arch/avr32/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/include/asm/global_data.h b/arch/avr32/include/asm/global_data.h index 236a9da..3be8628 100644 --- a/arch/avr32/include/asm/global_data.h +++ b/arch/avr32/include/asm/global_data.h @@ -24,6 +24,7 @@ /* Architecture-specific global data */ struct arch_global_data { + unsigned long stack_end; /* highest stack address */ }; /* @@ -38,7 +39,6 @@ typedef struct global_data { bd_t *bd; unsigned long flags; unsigned int baudrate; - unsigned long stack_end; /* highest stack address */ unsigned long have_console; /* serial_init() was called */ #ifdef CONFIG_PRE_CONSOLE_BUFFER unsigned long precon_buf_idx; /* Pre-Console buffer index */ |