aboutsummaryrefslogtreecommitdiff
path: root/arch/s390/include/asm/current.h
diff options
context:
space:
mode:
authorSven Schnelle <[email protected]>2024-06-10 13:45:25 +0200
committerVasily Gorbik <[email protected]>2024-06-18 17:01:33 +0200
commit208da1d5fc3c67d8ae5d34e844fd67cc47a136f0 (patch)
tree5e63e0ca7c11ea9545b8641ce012c104957e661f /arch/s390/include/asm/current.h
parent7e8f89e5e05983089be1d431f1c82e5abc37574a (diff)
s390: Replace S390_lowcore by get_lowcore()
Replace all S390_lowcore usages in arch/s390/ by get_lowcore(). Acked-by: Heiko Carstens <[email protected]> Signed-off-by: Sven Schnelle <[email protected]> Signed-off-by: Vasily Gorbik <[email protected]>
Diffstat (limited to 'arch/s390/include/asm/current.h')
-rw-r--r--arch/s390/include/asm/current.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/current.h b/arch/s390/include/asm/current.h
index 68f84315277c..d03a922c641e 100644
--- a/arch/s390/include/asm/current.h
+++ b/arch/s390/include/asm/current.h
@@ -14,6 +14,6 @@
struct task_struct;
-#define current ((struct task_struct *const)S390_lowcore.current_task)
+#define current ((struct task_struct *const)get_lowcore()->current_task)
#endif /* !(_S390_CURRENT_H) */