aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/handle.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/irq/handle.c')
-rw-r--r--kernel/irq/handle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index 3a2dbcc9e215..01fc7f79d74a 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -45,7 +45,7 @@ handle_bad_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs)
45struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned = { 45struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned = {
46 [0 ... NR_IRQS-1] = { 46 [0 ... NR_IRQS-1] = {
47 .status = IRQ_DISABLED, 47 .status = IRQ_DISABLED,
48 .chip = &no_irq_type, 48 .chip = &no_irq_chip,
49 .handle_irq = handle_bad_irq, 49 .handle_irq = handle_bad_irq,
50 .depth = 1, 50 .depth = 1,
51 .lock = SPIN_LOCK_UNLOCKED, 51 .lock = SPIN_LOCK_UNLOCKED,
@@ -79,8 +79,8 @@ static unsigned int noop_ret(unsigned int irq)
79/* 79/*
80 * Generic no controller implementation 80 * Generic no controller implementation
81 */ 81 */
82struct hw_interrupt_type no_irq_type = { 82struct irq_chip no_irq_chip = {
83 .typename = "none", 83 .name = "none",
84 .startup = noop_ret, 84 .startup = noop_ret,
85 .shutdown = noop, 85 .shutdown = noop,
86 .enable = noop, 86 .enable = noop,