diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 11:16:41 -0700 |
---|---|---|
committer | Chris Wright <chrisw@osdl.org> | 2005-06-29 16:00:39 -0700 |
commit | 1ef0867a529b222b8ff659d68140df8d5d6a45f2 (patch) | |
tree | 664b6ccbaf10d2ec391852a5bf152f441c33a88c | |
parent | 2e8e121926ee6d15151c8e57ddce97275213c5b2 (diff) |
[PATCH] ACPI: Make sure we call acpi_register_gsi() even for default PCI interrupt assignment
ACPI: Make sure we call acpi_register_gsi() even for default PCI interrupt 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.
Signed-off-by: Chris Wright <chrisw@osdl.org>
-rw-r--r-- | drivers/acpi/pci_irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c index 8093f2e0032..8dbf802ee7f 100644 --- a/drivers/acpi/pci_irq.c +++ b/drivers/acpi/pci_irq.c @@ -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 { |