From: Yinghai Lu Date: Thu, 25 Sep 2008 02:04:35 +0000 (-0700) Subject: x86: fix typo in irq_desc array X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=aac3f2b6f6e88827432c4050ac73552f24b19de1;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git x86: fix typo in irq_desc array when SPARSE_IRQ is not used, should still use irq_desc->lock Signed-off-by: Yinghai Lu Signed-off-by: Ingo Molnar --- diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index 7f625fbc9aa..fb6bdb602a9 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c @@ -253,7 +253,7 @@ struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { .chip = &no_irq_chip, .handle_irq = handle_bad_irq, .depth = 1, - .lock = __SPIN_LOCK_UNLOCKED(sparse_irqs->lock), + .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock), #ifdef CONFIG_SMP .affinity = CPU_MASK_ALL #endif