From: Sinan Kaya Date: Wed, 9 Dec 2015 16:18:28 +0000 (-0500) Subject: ACPI, PCI, irq: remove interrupt number restriction X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=37c5939136d7ce42b36c5d5b46f5272903a68433;p=linux-beck.git ACPI, PCI, irq: remove interrupt number restriction The ACPI compiler uses the extended format when used interrupt numbers are greater than 15. The extended IRQ syntax is 32 bits according to the ACPI spec. The code supports parsing the extended interrupt numbers. However, due to used data structure type; the code silently truncates interrupt numbers greater than 256. Acked-by: Bjorn Helgaas Signed-off-by: Sinan Kaya Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/pci_link.c b/drivers/acpi/pci_link.c index 0286f17f0fa5..5114d8007aa0 100644 --- a/drivers/acpi/pci_link.c +++ b/drivers/acpi/pci_link.c @@ -68,12 +68,12 @@ static struct acpi_scan_handler pci_link_handler = { * later even the link is disable. Instead, we just repick the active irq */ struct acpi_pci_link_irq { - u8 active; /* Current IRQ */ + u32 active; /* Current IRQ */ u8 triggering; /* All IRQs */ u8 polarity; /* All IRQs */ u8 resource_type; u8 possible_count; - u8 possible[ACPI_PCI_LINK_MAX_POSSIBLE]; + u32 possible[ACPI_PCI_LINK_MAX_POSSIBLE]; u8 initialized:1; u8 reserved:7; };