Change for loops with list_for_each_entry().
Signed-off-by: Domen Puncer <[email protected]>
Signed-off-by: Maximilian Attems <[email protected]>
---
linux-2.6.9-rc1-bk7-max/arch/ia64/pci/pci.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff -puN arch/ia64/pci/pci.c~list-for-each-arch_ia64_pci_pci arch/ia64/pci/pci.c
--- linux-2.6.9-rc1-bk7/arch/ia64/pci/pci.c~list-for-each-arch_ia64_pci_pci 2004-09-01 19:38:06.000000000 +0200
+++ linux-2.6.9-rc1-bk7-max/arch/ia64/pci/pci.c 2004-09-01 19:38:06.000000000 +0200
@@ -360,10 +360,10 @@ pcibios_fixup_device_resources (struct p
void __devinit
pcibios_fixup_bus (struct pci_bus *b)
{
- struct list_head *ln;
+ struct pci_dev *dev;
- for (ln = b->devices.next; ln != &b->devices; ln = ln->next)
- pcibios_fixup_device_resources(pci_dev_b(ln), b);
+ list_for_each_entry(dev, &b->devices, bus_list)
+ pcibios_fixup_device_resources(dev, b);
return;
}
_