summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-03-22 14:39:02 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-03-23 12:16:25 +0100
commitb46746c7383e2b400742e9bca37b54c55cf05587 (patch)
tree66a5ea2471f4c2ad1d21c34b92c3784b26512b02
parentd2e7b10d2cb3b97dcad6a45bd97a3857cbc3db66 (diff)
downloadbarebox-b46746c7383e2b400742e9bca37b54c55cf05587.tar.gz
barebox-b46746c7383e2b400742e9bca37b54c55cf05587.tar.xz
ARM: aarch64: omit unused label in assembly
The 1: is a left-over from before 5f04e5e03e94 ("ARM: aarch64: Fix get_runtime_offset after relocation"). It's unused now, so drop it. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/arm/lib64/runtime-offset.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib64/runtime-offset.S b/arch/arm/lib64/runtime-offset.S
index 5e5ab9a8d1..e2ff5d2103 100644
--- a/arch/arm/lib64/runtime-offset.S
+++ b/arch/arm/lib64/runtime-offset.S
@@ -8,7 +8,7 @@
* we are currently running at.
*/
ENTRY(get_runtime_offset)
-1: adr x0, _text
+ adr x0, _text
ldr x1, linkadr
subs x0, x0, x1
ret