From: Heiko Carstens Date: Mon, 5 Jul 2021 18:56:40 +0000 (+0200) Subject: s390/softirq: use call_on_stack() macro X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b8f4c89fd719289cee5634e0b1e918ab081ece35;p=uclinux-h8%2Flinux.git s390/softirq: use call_on_stack() macro Reviewed-by: Sven Schnelle Signed-off-by: Heiko Carstens Signed-off-by: Vasily Gorbik --- 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 */