aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/parport
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/parport')
-rw-r--r--drivers/parport/parport_pc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parport/parport_pc.c b/drivers/parport/parport_pc.c
index 97f723179f62..1b938bb9be3c 100644
--- a/drivers/parport/parport_pc.c
+++ b/drivers/parport/parport_pc.c
@@ -3010,7 +3010,7 @@ static int __init parport_pc_init_superio (int autoirq, int autodma)
3010 struct pci_dev *pdev = NULL; 3010 struct pci_dev *pdev = NULL;
3011 int ret = 0; 3011 int ret = 0;
3012 3012
3013 while ((pdev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pdev)) != NULL) { 3013 for_each_pci_dev(pdev) {
3014 id = pci_match_id(parport_pc_pci_tbl, pdev); 3014 id = pci_match_id(parport_pc_pci_tbl, pdev);
3015 if (id == NULL || id->driver_data >= last_sio) 3015 if (id == NULL || id->driver_data >= last_sio)
3016 continue; 3016 continue;