From b8f4c89fd719289cee5634e0b1e918ab081ece35 Mon Sep 17 00:00:00 2001 From: Heiko Carstens Date: Mon, 5 Jul 2021 20:56:40 +0200 Subject: [PATCH] s390/softirq: use call_on_stack() macro Reviewed-by: Sven Schnelle Signed-off-by: Heiko Carstens Signed-off-by: Vasily Gorbik --- arch/s390/include/asm/softirq_stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/s390/include/asm/softirq_stack.h b/arch/s390/include/asm/softirq_stack.h index 5976fd6..fd17f25 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 */ -- 2.7.4