Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 206108
b: refs/heads/master
c: 4e344b1
h: refs/heads/master
v: v3
  • Loading branch information
Kulikov Vasiliy authored and Jesse Barnes committed Jul 30, 2010
1 parent 98ba7ec commit 71cb697
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 30da55242818a8ca08583188ebcbaccd283ad4d9
refs/heads/master: 4e344b1cc53989e8ecc1140e9346f657d7c8aa9e
2 changes: 1 addition & 1 deletion trunk/drivers/pci/hotplug/fakephp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/pci/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pci/quirks.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pci/search.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/pci/setup-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 71cb697

Please sign in to comment.