From: Bjorn Helgaas Date: Tue, 9 Dec 2008 04:30:20 +0000 (-0700) Subject: ACPI: PCI: ignore _PRT function information X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b52b3f4af83571e86f910b07a61b177e2b7d8409;p=linux-beck.git ACPI: PCI: ignore _PRT function information _PRT entries don't contain any useful PCI function information (the function part of the PCI address is supposed to be 0xffff), and we don't ever look at it, so this patch just removes the reference to it. Signed-off-by: Bjorn Helgaas Signed-off-by: Len Brown --- diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c index 6a9f3ddb322e..c6a0364715ce 100644 --- a/drivers/acpi/pci_irq.c +++ b/drivers/acpi/pci_irq.c @@ -185,7 +185,6 @@ acpi_pci_irq_add_entry(acpi_handle handle, entry->id.segment = segment; entry->id.bus = bus; entry->id.device = (prt->address >> 16) & 0xFFFF; - entry->id.function = prt->address & 0xFFFF; entry->pin = prt->pin; do_prt_fixups(entry, prt);