summaryrefslogtreecommitdiff
path: root/arch/s390/lib/uaccess.c
diff options
context:
space:
mode:
authorHeiko Carstens <hca@linux.ibm.com>2023-03-24 15:00:19 +0100
committerVasily Gorbik <gor@linux.ibm.com>2023-04-04 18:27:24 +0200
commitb96adf0d03e01fa10483f38e302a5f93bb733ed0 (patch)
tree4eb918d39b90b83a53bfc1dc14597974525ae9e2 /arch/s390/lib/uaccess.c
parent10679e4d9848a04694eb99ec7390a6585d1b7ca9 (diff)
s390/uaccess: remove unused label in inline assemblies
Remove an unused label in all three uaccess inline assemblies. Reviewed-by: Gerald Schaefer <gerald.schaefer@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/lib/uaccess.c')
-rw-r--r--arch/s390/lib/uaccess.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/s390/lib/uaccess.c b/arch/s390/lib/uaccess.c
index 0ebd522ccd6f..d0bbdcbd7baf 100644
--- a/arch/s390/lib/uaccess.c
+++ b/arch/s390/lib/uaccess.c
@@ -47,7 +47,7 @@ static unsigned long raw_copy_from_user_key(void *to, const void __user *from,
" lr 0,%[spec]\n"
"0: mvcos 0(%[to]),0(%[from]),%[size]\n"
"6: jz 4f\n"
- "1: algr %[size],%[tmp1]\n"
+ " algr %[size],%[tmp1]\n"
" slgr %[from],%[tmp1]\n"
" slgr %[to],%[tmp1]\n"
" j 0b\n"
@@ -108,7 +108,7 @@ static unsigned long raw_copy_to_user_key(void __user *to, const void *from,
" lr 0,%[spec]\n"
"0: mvcos 0(%[to]),0(%[from]),%[size]\n"
"6: jz 4f\n"
- "1: algr %[size],%[tmp1]\n"
+ " algr %[size],%[tmp1]\n"
" slgr %[to],%[tmp1]\n"
" slgr %[from],%[tmp1]\n"
" j 0b\n"
@@ -160,7 +160,7 @@ unsigned long __clear_user(void __user *to, unsigned long size)
" lr 0,%[spec]\n"
"0: mvcos 0(%[to]),0(%[zeropg]),%[size]\n"
"6: jz 4f\n"
- "1: algr %[size],%[tmp1]\n"
+ " algr %[size],%[tmp1]\n"
" slgr %[to],%[tmp1]\n"
" j 0b\n"
"2: la %[tmp2],4095(%[to])\n" /* tmp2 = to + 4095 */