aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/s390/kernel/irq.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/s390/kernel/irq.c b/arch/s390/kernel/irq.c
index 2fb099809d5d..99b0b09646ca 100644
--- a/arch/s390/kernel/irq.c
+++ b/arch/s390/kernel/irq.c
@@ -92,7 +92,6 @@ static const struct irq_class irqclass_sub_desc[NR_ARCH_IRQS] = {
92 92
93void __init init_IRQ(void) 93void __init init_IRQ(void)
94{ 94{
95 irq_reserve_irqs(0, THIN_INTERRUPT);
96 init_cio_interrupts(); 95 init_cio_interrupts();
97 init_airq_interrupts(); 96 init_airq_interrupts();
98 init_ext_interrupts(); 97 init_ext_interrupts();
@@ -151,6 +150,11 @@ out:
151 return 0; 150 return 0;
152} 151}
153 152
153unsigned int arch_dynirq_lower_bound(unsigned int from)
154{
155 return from < THIN_INTERRUPT ? THIN_INTERRUPT : from;
156}
157
154/* 158/*
155 * Switch to the asynchronous interrupt stack for softirq execution. 159 * Switch to the asynchronous interrupt stack for softirq execution.
156 */ 160 */