From 551b5427798e0fabcd14dc801b064a79df5de41a Mon Sep 17 00:00:00 2001 From: Kimplul Date: Thu, 3 Aug 2023 18:42:07 +0300 Subject: fix cpu_send_ipi --- arch/riscv64/kernel/sbi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/riscv64/kernel/sbi.h') diff --git a/arch/riscv64/kernel/sbi.h b/arch/riscv64/kernel/sbi.h index 9b3ffbc..ef38b35 100644 --- a/arch/riscv64/kernel/sbi.h +++ b/arch/riscv64/kernel/sbi.h @@ -122,8 +122,8 @@ static inline struct sbiret sbi_system_reset(uint32_t reset_type, static inline struct sbiret sbi_send_ipi(unsigned long hart_mask, unsigned long hart_mask_base) { - return sbi_ecall(EID_sPI, FID_IPI, hart_mask, hart_mask_base, 0, 0, 0, - 0); + return sbi_ecall(EID_sPI, FID_IPI, hart_mask, hart_mask_base, + 0, 0, 0, 0); } #endif /* KMI_RISCV_SBI_H */ -- cgit v1.3