diff options
Diffstat (limited to 'kernel/irq/irqdesc.c')
-rw-r--r-- | kernel/irq/irqdesc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/irqdesc.c b/kernel/irq/irqdesc.c index 6f6644f819dd..8b87f2ce0203 100644 --- a/kernel/irq/irqdesc.c +++ b/kernel/irq/irqdesc.c | |||
@@ -79,7 +79,7 @@ static void desc_set_defaults(unsigned int irq, struct irq_desc *desc, int node) | |||
79 | desc->irq_data.chip_data = NULL; | 79 | desc->irq_data.chip_data = NULL; |
80 | desc->irq_data.handler_data = NULL; | 80 | desc->irq_data.handler_data = NULL; |
81 | desc->irq_data.msi_desc = NULL; | 81 | desc->irq_data.msi_desc = NULL; |
82 | desc->status = IRQ_DEFAULT_INIT_FLAGS; | 82 | desc->status = _IRQ_DEFAULT_INIT_FLAGS; |
83 | desc->handle_irq = handle_bad_irq; | 83 | desc->handle_irq = handle_bad_irq; |
84 | desc->depth = 1; | 84 | desc->depth = 1; |
85 | desc->irq_count = 0; | 85 | desc->irq_count = 0; |
@@ -246,7 +246,7 @@ int __init early_irq_init(void) | |||
246 | 246 | ||
247 | struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { | 247 | struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { |
248 | [0 ... NR_IRQS-1] = { | 248 | [0 ... NR_IRQS-1] = { |
249 | .status = IRQ_DEFAULT_INIT_FLAGS, | 249 | .status = _IRQ_DEFAULT_INIT_FLAGS, |
250 | .handle_irq = handle_bad_irq, | 250 | .handle_irq = handle_bad_irq, |
251 | .depth = 1, | 251 | .depth = 1, |
252 | .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc->lock), | 252 | .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc->lock), |