Messages in this thread Patch in this message |  | | | Date | Fri, 01 Oct 2004 11:10:43 -0700 | | From | Hanna Linder <> | | Subject | [PATCH 2.6.9-rc2-mm4 ia64/pci/pci.c] Replace pci_find_device with pci_get_device |
| |
As pci_find_device is going away soon I have replaced the call with pci_get_device. Judith, could you run these 3 ia64 ones through PLM, please?
Thanks a lot.
Hanna Linder IBM Linux Technology Center
Signed-off-by: Hanna Linder <hannal@us.ibm.com>
--- diff -Nrup linux-2.6.9-rc2-mm4cln/arch/ia64/pci/pci.c linux-2.6.9-rc2-mm4patch/arch/ia64/pci/pci.c --- linux-2.6.9-rc2-mm4cln/arch/ia64/pci/pci.c 2004-09-28 14:58:07.000000000 -0700 +++ linux-2.6.9-rc2-mm4patch/arch/ia64/pci/pci.c 2004-09-30 16:48:22.511799264 -0700 @@ -154,7 +154,7 @@ extern acpi_status acpi_map_iosapic (acp printk(KERN_INFO "** was specified. If this was required to make a driver work,\n"); printk(KERN_INFO "** please email the output of \"lspci\" to bjorn.helgaas@hp.com\n"); printk(KERN_INFO "** so I can fix the driver.\n"); - while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) + while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) acpi_pci_irq_enable(dev); } else { printk(KERN_INFO "** PCI interrupts are no longer routed automatically. If this\n"); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |