File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ static unsigned int riscv_intc_nr_irqs __ro_after_init = BITS_PER_LONG;
26
26
static unsigned int riscv_intc_custom_base __ro_after_init = BITS_PER_LONG ;
27
27
static unsigned int riscv_intc_custom_nr_irqs __ro_after_init ;
28
28
29
- static asmlinkage void riscv_intc_irq (struct pt_regs * regs )
29
+ static void riscv_intc_irq (struct pt_regs * regs )
30
30
{
31
31
unsigned long cause = regs -> cause & ~CAUSE_IRQ_FLAG ;
32
32
33
33
if (generic_handle_domain_irq (intc_domain , cause ))
34
34
pr_warn_ratelimited ("Failed to handle interrupt (cause: %ld)\n" , cause );
35
35
}
36
36
37
- static asmlinkage void riscv_intc_aia_irq (struct pt_regs * regs )
37
+ static void riscv_intc_aia_irq (struct pt_regs * regs )
38
38
{
39
39
unsigned long topi ;
40
40
You can’t perform that action at this time.
0 commit comments