summaryrefslogtreecommitdiff
path: root/arch/arm/lib/div64.S
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2016-05-26 16:01:43 (GMT)
committerTom Rini <trini@konsulko.com>2016-06-03 01:21:46 (GMT)
commit40d67c75e47e2e76cc310515c55d758151b9fdde (patch)
treec7cef146225fa79736b18dc29556b76ce98d9e65 /arch/arm/lib/div64.S
parent7b9f9c5d3bae666359143cf5a681f90e998b5a80 (diff)
downloadu-boot-fsl-qoriq-40d67c75e47e2e76cc310515c55d758151b9fdde.tar.xz
arm: lib: Repair Warning: conditional infixes are deprecated in unified syntax
Fix the following warning when building for thumb2 target by tweaking the instruction syntax: Warning: conditional infixes are deprecated in unified syntax Signed-off-by: Marek Vasut <marex@denx.de> Cc: Albert Aribaud <albert.u.boot@aribaud.net> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@konsulko.com> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/lib/div64.S')
-rw-r--r--arch/arm/lib/div64.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/lib/div64.S b/arch/arm/lib/div64.S
index 03986c2..a42a0f0 100644
--- a/arch/arm/lib/div64.S
+++ b/arch/arm/lib/div64.S
@@ -88,8 +88,8 @@ UNWIND(.fnstart)
@ Break out early if dividend reaches 0.
2: cmp xh, yl
orrcs yh, yh, ip
- subcss xh, xh, yl
- movnes ip, ip, lsr #1
+ subscs xh, xh, yl
+ movsne ip, ip, lsr #1
mov yl, yl, lsr #1
bne 2b