diff options
author | Simon Glass | 2013-03-05 14:39:37 +0000 |
---|---|---|
committer | Tom Rini | 2013-03-15 16:13:58 -0400 |
commit | 1865286466a5d0c7f2e3c37632da56556c838e9e (patch) | |
tree | 9e3ef4026c009acb4964430e7400f7955f734bf9 /arch/avr32/include | |
parent | 3929fb0a141530551b3fce15ee08629f80d5ef2a (diff) |
Introduce generic link section.h symbol files
We create a separate header file for link symbols defined by the link
scripts. It is helpful to have these all in one place and try to
make them common across architectures. Since Linux already has a similar
file, we bring this in even though many of the symbols there are not
relevant to us.
Each architecture has its own asm/sections.h where symbols specifc to
that architecture can be added. For now everything except AVR32 just
includes the generic header.
One change is needed in arch/avr32/lib/board.c to make this conversion
work.
Reviewed-by: Tom Rini <trini@ti.com> (version 5)
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/avr32/include')
-rw-r--r-- | arch/avr32/include/asm/sections.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/avr32/include/asm/sections.h b/arch/avr32/include/asm/sections.h index a78fd40bedd..056d7a05d5e 100644 --- a/arch/avr32/include/asm/sections.h +++ b/arch/avr32/include/asm/sections.h @@ -22,11 +22,11 @@ #ifndef __ASM_AVR32_SECTIONS_H #define __ASM_AVR32_SECTIONS_H +#include <asm-generic/sections.h> + /* References to section boundaries */ -extern char _text[], _etext[]; -extern char _data[], __data_lma[], _edata[], __edata_lma[]; +extern char __data_lma[], __edata_lma[]; extern char __got_start[], __got_lma[], __got_end[]; -extern char __bss_end[]; #endif /* __ASM_AVR32_SECTIONS_H */ |