Skip to content

Commit

Permalink
ACPI: Make sure we call acpi_register_gsi() even for default PCI inte…
Browse files Browse the repository at this point in the history
…rrupt assignment

That's the part that keeps track of the ELCR register, and we want to
make sure that the PCI interrupts are properly marked level/low.
  • Loading branch information
Linus Torvalds committed Jun 25, 2005
1 parent 5f70eaa commit 7be426c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/acpi/pci_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,7 @@ acpi_pci_irq_enable (
/* Interrupt Line values above 0xF are forbidden */
if (dev->irq >= 0 && (dev->irq <= 0xF)) {
printk(" - using IRQ %d\n", dev->irq);
acpi_register_gsi(dev->irq, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW);
return_VALUE(0);
}
else {
Expand Down

0 comments on commit 7be426c

Please sign in to comment.