diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2021-07-05 17:55:32 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2021-07-08 22:12:18 +0200 |
commit | b55e692e6bcbec36b4e0ba683608e7e1e7aab8c7 (patch) | |
tree | 18a2dbbb86321885d60d22d340bfa1170947e460 /arch/s390/include/asm/stacktrace.h | |
parent | a9b660849ffa70aaef868d0bc54e325919fe1281 (diff) | |
download | linux-stable-b55e692e6bcbec36b4e0ba683608e7e1e7aab8c7.tar.gz linux-stable-b55e692e6bcbec36b4e0ba683608e7e1e7aab8c7.tar.bz2 linux-stable-b55e692e6bcbec36b4e0ba683608e7e1e7aab8c7.zip |
s390: rename CALL_ON_STACK_NORETURN() to call_on_stack_noreturn()
Lower case matches the call_on_stack() macro and is easier to read.
Reviewed-by: Sven Schnelle <svens@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/include/asm/stacktrace.h')
-rw-r--r-- | arch/s390/include/asm/stacktrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/stacktrace.h b/arch/s390/include/asm/stacktrace.h index 4d4d5dfac24b..3d8a4b94c620 100644 --- a/arch/s390/include/asm/stacktrace.h +++ b/arch/s390/include/asm/stacktrace.h @@ -189,7 +189,7 @@ struct stack_frame { (rettype)r2; \ }) -#define CALL_ON_STACK_NORETURN(fn, stack) \ +#define call_on_stack_noreturn(fn, stack) \ ({ \ void (*__fn)(void) = fn; \ \ |