mirror of https://gitee.com/openkylin/linux.git
ACPI,PCI,IRQ: correct operator precedence
The omitted parenthesis prevents the addition operation when
acpi_penalize_isa_irq function is called.
Fixes: 103544d869
(ACPI,PCI,IRQ: reduce resource requirements)
Signed-off-by: Sinan Kaya <okaya@codeaurora.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
4c2e07c6a2
commit
54794580f5
|
@ -839,7 +839,7 @@ void acpi_penalize_isa_irq(int irq, int active)
|
||||||
{
|
{
|
||||||
if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty)))
|
if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty)))
|
||||||
acpi_isa_irq_penalty[irq] = acpi_irq_get_penalty(irq) +
|
acpi_isa_irq_penalty[irq] = acpi_irq_get_penalty(irq) +
|
||||||
active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING;
|
(active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool acpi_isa_irq_available(int irq)
|
bool acpi_isa_irq_available(int irq)
|
||||||
|
|
Loading…
Reference in New Issue