diff options
| author | Kulikov Vasiliy <segooon@gmail.com> | 2010-07-03 20:04:39 +0400 | 
|---|---|---|
| committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-07-30 09:47:22 -0700 | 
| commit | 4e344b1cc53989e8ecc1140e9346f657d7c8aa9e (patch) | |
| tree | 8b6f8d4b7445e7b8e0b6d1b6f68bf165f5735f16 | |
| parent | 30da55242818a8ca08583188ebcbaccd283ad4d9 (diff) | |
| download | olio-linux-3.10-4e344b1cc53989e8ecc1140e9346f657d7c8aa9e.tar.xz olio-linux-3.10-4e344b1cc53989e8ecc1140e9346f657d7c8aa9e.zip  | |
PCI: use for_each_pci_dev()
Use for_each_pci_dev() to simplify the code.
Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
| -rw-r--r-- | drivers/pci/hotplug/fakephp.c | 2 | ||||
| -rw-r--r-- | drivers/pci/proc.c | 4 | ||||
| -rw-r--r-- | drivers/pci/quirks.c | 2 | ||||
| -rw-r--r-- | drivers/pci/search.c | 2 | ||||
| -rw-r--r-- | drivers/pci/setup-irq.c | 3 | 
5 files changed, 6 insertions, 7 deletions
diff --git a/drivers/pci/hotplug/fakephp.c b/drivers/pci/hotplug/fakephp.c index 5317e4d7d96..17d10e2e8fb 100644 --- a/drivers/pci/hotplug/fakephp.c +++ b/drivers/pci/hotplug/fakephp.c @@ -135,7 +135,7 @@ static int __init init_legacy(void)  	struct pci_dev *pdev = NULL;  	/* Add existing devices */ -	while ((pdev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, pdev))) +	for_each_pci_dev(pdev)  		legacy_add_slot(pdev);  	/* Be alerted of any new ones */ diff --git a/drivers/pci/proc.c b/drivers/pci/proc.c index 68316b59d7d..01f0306525a 100644 --- a/drivers/pci/proc.c +++ b/drivers/pci/proc.c @@ -483,9 +483,9 @@ static int __init pci_proc_init(void)  	proc_create("devices", 0, proc_bus_pci_dir,  		    &proc_bus_pci_dev_operations);  	proc_initialized = 1; -	while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { +	for_each_pci_dev(dev)  		pci_proc_attach_device(dev); -	} +  	return 0;  } diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 202efa6f57c..8141f442e3d 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -2773,7 +2773,7 @@ static int __init pci_apply_final_quirks(void)  		printk(KERN_DEBUG "PCI: CLS %u bytes\n",  		       pci_cache_line_size << 2); -	while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { +	for_each_pci_dev(dev) {  		pci_fixup_device(pci_fixup_final, dev);  		/*  		 * If arch hasn't set it explicitly yet, use the CLS diff --git a/drivers/pci/search.c b/drivers/pci/search.c index 20d03f77228..9d75dc8ca60 100644 --- a/drivers/pci/search.c +++ b/drivers/pci/search.c @@ -169,7 +169,7 @@ struct pci_dev *pci_get_domain_bus_and_slot(int domain, unsigned int bus,  {  	struct pci_dev *dev = NULL; -	while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { +	for_each_pci_dev(dev) {  		if (pci_domain_nr(dev->bus) == domain &&  		    (dev->bus->number == bus && dev->devfn == devfn))  			return dev; diff --git a/drivers/pci/setup-irq.c b/drivers/pci/setup-irq.c index aa795fd428d..eec9738f349 100644 --- a/drivers/pci/setup-irq.c +++ b/drivers/pci/setup-irq.c @@ -59,7 +59,6 @@ pci_fixup_irqs(u8 (*swizzle)(struct pci_dev *, u8 *),  	       int (*map_irq)(struct pci_dev *, u8, u8))  {  	struct pci_dev *dev = NULL; -	while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { +	for_each_pci_dev(dev)  		pdev_fixup_irq(dev, swizzle, map_irq); -	}  }  |