Browse Source

[PATCH] PCI: pci_find_device remove (frv/mb93090-mb00/pci-frv.c)

Signed-off-by: Jiri Slaby <xslaby@fi.muni.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Jiri Slaby 19 years ago
parent
commit
619daa2e4c
1 changed files with 2 additions and 6 deletions
  1. 2 6
      arch/frv/mb93090-mb00/pci-frv.c

+ 2 - 6
arch/frv/mb93090-mb00/pci-frv.c

@@ -142,9 +142,7 @@ static void __init pcibios_allocate_resources(int pass)
 	u16 command;
 	u16 command;
 	struct resource *r, *pr;
 	struct resource *r, *pr;
 
 
-	while (dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev),
-	       dev != NULL
-	       ) {
+	for_each_pci_dev(dev) {
 		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];
@@ -188,9 +186,7 @@ static void __init pcibios_assign_resources(void)
 	int idx;
 	int idx;
 	struct resource *r;
 	struct resource *r;
 
 
-	while (dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev),
-	       dev != NULL
-	       ) {
+	for_each_pci_dev(dev) {
 		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 */