diff options
author | Anup Patel <anup.patel@wdc.com> | 2020-03-27 11:26:11 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-03-28 13:32:47 +0530 |
commit | 9e52a45f4be89df7000dcc1009af669e2e30d850 (patch) | |
tree | 011f55689b9a5c695ee3b396af90341cdc6972c2 /lib/sbi/sbi_trap.c | |
parent | 54b2779cfeeaaf7752df19deba56b79bad1caea6 (diff) |
include: sbi_ipi: Remove scratch parameter from most functions
This patch removes scratch parameter from most sbi_ipi functions.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'lib/sbi/sbi_trap.c')
-rw-r--r-- | lib/sbi/sbi_trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_trap.c b/lib/sbi/sbi_trap.c index 32fa699..84f1683 100644 --- a/lib/sbi/sbi_trap.c +++ b/lib/sbi/sbi_trap.c @@ -232,7 +232,7 @@ void sbi_trap_handler(struct sbi_trap_regs *regs) sbi_timer_process(sbi_scratch_thishart_ptr()); break; case IRQ_M_SOFT: - sbi_ipi_process(sbi_scratch_thishart_ptr()); + sbi_ipi_process(); break; default: msg = "unhandled external interrupt"; |