diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2021-07-05 21:56:40 +0300 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2021-07-08 23:12:18 +0300 |
commit | b8f4c89fd719289cee5634e0b1e918ab081ece35 (patch) | |
tree | 405192475cc93b31989fbebe18bfa2dc8202293b /arch | |
parent | 58d4a785da45984ff7cf3046d5c3c35002c9d721 (diff) | |
download | linux-b8f4c89fd719289cee5634e0b1e918ab081ece35.tar.xz |
s390/softirq: use call_on_stack() macro
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')
-rw-r--r-- | arch/s390/include/asm/softirq_stack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/softirq_stack.h b/arch/s390/include/asm/softirq_stack.h index 5976fd613cd2..fd17f25704bd 100644 --- a/arch/s390/include/asm/softirq_stack.h +++ b/arch/s390/include/asm/softirq_stack.h @@ -7,7 +7,7 @@ static inline void do_softirq_own_stack(void) { - CALL_ON_STACK(__do_softirq, S390_lowcore.async_stack, 0); + call_on_stack(0, S390_lowcore.async_stack, void, __do_softirq); } #endif /* __ASM_S390_SOFTIRQ_STACK_H */ |