diff options
author | Marek Vasut <marex@denx.de> | 2016-06-05 00:46:55 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-04 19:25:14 -0400 |
commit | 756e76f0753fdb6b6ea10482db5ebbaf72c9df66 (patch) | |
tree | 0a427819700ebd12d64d382047645841eeb29a5b | |
parent | cc749523ae1adec3856f2b7fe77a6d856da4652a (diff) | |
download | u-boot-imx-756e76f0753fdb6b6ea10482db5ebbaf72c9df66.zip u-boot-imx-756e76f0753fdb6b6ea10482db5ebbaf72c9df66.tar.gz u-boot-imx-756e76f0753fdb6b6ea10482db5ebbaf72c9df66.tar.bz2 |
arm: lib: Fix fix push/pop-section directives
Repair typos in the previous "arm: lib: fix push/pop-section directives"
patch, which prevented VCMA9 board from building.
Signed-off-by: Marek Vasut <marex@denx.de>
Fixes: b2f1858455e9 ("arm: lib: fix push/pop-section directives")
Cc: Tom Warren <twarren@nvidia.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Stephen Warren <swarren@nvidia.com>
-rw-r--r-- | arch/arm/lib/lib1funcs.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/lib/lib1funcs.S b/arch/arm/lib/lib1funcs.S index 9bf93ce..76968ce 100644 --- a/arch/arm/lib/lib1funcs.S +++ b/arch/arm/lib/lib1funcs.S @@ -367,9 +367,9 @@ UNWIND(.fnend) ENDPROC(Ldiv0) .popsection -.pushsection .text.__gnu_thumb1_case_sqi, "ax" /* Thumb-1 specialities */ #if defined(CONFIG_SYS_THUMB_BUILD) && !defined(CONFIG_HAS_THUMB2) +.pushsection .text.__gnu_thumb1_case_sqi, "ax" ENTRY(__gnu_thumb1_case_sqi) push {r1} mov r1, lr @@ -383,7 +383,7 @@ ENTRY(__gnu_thumb1_case_sqi) ENDPROC(__gnu_thumb1_case_sqi) .popsection -_.pushsection .text.__gnu_thumb1_case_uqi, "ax" +.pushsection .text.__gnu_thumb1_case_uqi, "ax" ENTRY(__gnu_thumb1_case_uqi) push {r1} mov r1, lr |