[PATCH] pci: Changed list_for_each to list_for_each_entry

From: Cordelia
Date: Mon Aug 18 2008 - 12:44:19 EST


Signed-off-by: Cordelia Sam <cordesam@xxxxxxxxx>
---
drivers/pci/probe.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index a04498d..6a7ba36 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -1245,13 +1245,11 @@ static int __init pci_sort_bf_cmp(const struct pci_dev *a, const struct pci_dev
*/
static void __init pci_insertion_sort_klist(struct pci_dev *a, struct list_head *list)
{
- struct list_head *pos;
struct klist_node *n;
struct device *dev;
struct pci_dev *b;

- list_for_each(pos, list) {
- n = container_of(pos, struct klist_node, n_node);
+ list_for_each_entry(n, list, n_node) {
dev = container_of(n, struct device, knode_bus);
b = to_pci_dev(dev);
if (pci_sort_bf_cmp(a, b) <= 0) {
--
1.5.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/