Signed-off-by: Andrew Morton --- drivers/parport/parport_pc.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/parport/parport_pc.c~gregkh-pci-pci-remove-pci_find_device-from-parport_pc drivers/parport/parport_pc.c --- devel/drivers/parport/parport_pc.c~gregkh-pci-pci-remove-pci_find_device-from-parport_pc 2005-09-07 20:10:12.000000000 -0700 +++ devel-akpm/drivers/parport/parport_pc.c 2005-09-07 20:10:12.000000000 -0700 @@ -3010,7 +3010,7 @@ static int __init parport_pc_init_superi struct pci_dev *pdev = NULL; int ret = 0; - while ((pdev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pdev)) != NULL) { + for_each_pci_dev(pdev) { id = pci_match_id(parport_pc_pci_tbl, pdev); if (id == NULL || id->driver_data >= last_sio) continue; _