File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -584,8 +584,6 @@ static irqreturn_t do_cio_interrupt(int irq, void *dummy)
584
584
return IRQ_HANDLED ;
585
585
}
586
586
587
- static struct irq_desc * irq_desc_io ;
588
-
589
587
static struct irqaction io_interrupt = {
590
588
.name = "IO" ,
591
589
.handler = do_cio_interrupt ,
@@ -596,7 +594,6 @@ void __init init_cio_interrupts(void)
596
594
irq_set_chip_and_handler (IO_INTERRUPT ,
597
595
& dummy_irq_chip , handle_percpu_irq );
598
596
setup_irq (IO_INTERRUPT , & io_interrupt );
599
- irq_desc_io = irq_to_desc (IO_INTERRUPT );
600
597
}
601
598
602
599
#ifdef CONFIG_CCW_CONSOLE
@@ -623,7 +620,7 @@ void cio_tsch(struct subchannel *sch)
623
620
local_bh_disable ();
624
621
irq_enter ();
625
622
}
626
- kstat_incr_irqs_this_cpu (IO_INTERRUPT , irq_desc_io );
623
+ kstat_incr_irq_this_cpu (IO_INTERRUPT );
627
624
if (sch -> driver && sch -> driver -> irq )
628
625
sch -> driver -> irq (sch );
629
626
else
You can’t perform that action at this time.
0 commit comments