diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-12-08 21:30:20 -0700 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-12-30 21:17:48 -0500 |
commit | b52b3f4af83571e86f910b07a61b177e2b7d8409 (patch) | |
tree | 23e8f0ff052bd020d6cdf89536edeff385b8162c /drivers/acpi/pci_irq.c | |
parent | 2320ac6cb078eec77bf93742895dc35e64fae124 (diff) | |
download | kernel_samsung_aries-b52b3f4af83571e86f910b07a61b177e2b7d8409.zip kernel_samsung_aries-b52b3f4af83571e86f910b07a61b177e2b7d8409.tar.gz kernel_samsung_aries-b52b3f4af83571e86f910b07a61b177e2b7d8409.tar.bz2 |
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 <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/pci_irq.c')
-rw-r--r-- | drivers/acpi/pci_irq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c index 6a9f3dd..c6a0364 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); |