Commit edda3792 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] PCI: remove usage of pci_for_each_dev() in arch/i386/pci/i386.c

parent 5367ae92
...@@ -121,12 +121,12 @@ static void __init pcibios_allocate_bus_resources(struct list_head *bus_list) ...@@ -121,12 +121,12 @@ static void __init pcibios_allocate_bus_resources(struct list_head *bus_list)
static void __init pcibios_allocate_resources(int pass) static void __init pcibios_allocate_resources(int pass)
{ {
struct pci_dev *dev; struct pci_dev *dev = NULL;
int idx, disabled; int idx, disabled;
u16 command; u16 command;
struct resource *r, *pr; struct resource *r, *pr;
pci_for_each_dev(dev) { while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
pci_read_config_word(dev, PCI_COMMAND, &command); pci_read_config_word(dev, PCI_COMMAND, &command);
for(idx = 0; idx < 6; idx++) { for(idx = 0; idx < 6; idx++) {
r = &dev->resource[idx]; r = &dev->resource[idx];
...@@ -166,11 +166,11 @@ static void __init pcibios_allocate_resources(int pass) ...@@ -166,11 +166,11 @@ static void __init pcibios_allocate_resources(int pass)
static void __init pcibios_assign_resources(void) static void __init pcibios_assign_resources(void)
{ {
struct pci_dev *dev; struct pci_dev *dev = NULL;
int idx; int idx;
struct resource *r; struct resource *r;
pci_for_each_dev(dev) { while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
int class = dev->class >> 8; int class = dev->class >> 8;
/* Don't touch classless devices and host bridges */ /* Don't touch classless devices and host bridges */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment