lkml.org 
[lkml]   [2004]   [Sep]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[patch 03/12] list_for_each: arch-ia64-pci-pci.c
From
Date



Change for loops with list_for_each_entry().

Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Maximilian Attems <janitor@sternwelten.at>




---

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;
}
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:05    [W:0.021 / U:0.540 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site