diff options
author | Alexey Brodkin <abrodkin@synopsys.com> | 2014-12-26 19:36:30 +0300 |
---|---|---|
committer | Alexey Brodkin <abrodkin@synopsys.com> | 2015-01-15 22:38:42 +0300 |
commit | 1c91a3d9790c6d8f4bcb0d896936672509a1439d (patch) | |
tree | 42b5a9506b35a7fa45dac57221d5b1bdff9e66f2 /arch/arc/include/asm | |
parent | 20a58ac0d8e09d0bf1a74c6b68fea22784512b51 (diff) | |
download | u-boot-imx-1c91a3d9790c6d8f4bcb0d896936672509a1439d.zip u-boot-imx-1c91a3d9790c6d8f4bcb0d896936672509a1439d.tar.gz u-boot-imx-1c91a3d9790c6d8f4bcb0d896936672509a1439d.tar.bz2 |
arc: relocate - minor refactoring and clean-up
* use better symbols for relocatable region boundaries
("__image_copy_start" instead of "CONFIG_SYS_TEXT_BASE")
* remove useless debug messages because they will only show up in case
of both problem (when normal "if" branch won't be taken) and DEBUG take
place which is pretty rare situation.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'arch/arc/include/asm')
-rw-r--r-- | arch/arc/include/asm/sections.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arc/include/asm/sections.h b/arch/arc/include/asm/sections.h index 2a7a987..b8f2a85 100644 --- a/arch/arc/include/asm/sections.h +++ b/arch/arc/include/asm/sections.h @@ -12,5 +12,6 @@ extern ulong __text_end; extern ulong __ivt_start; extern ulong __ivt_end; +extern ulong __image_copy_start; #endif /* __ASM_ARC_SECTIONS_H */ |