diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2005-11-07 02:39:33 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-09 15:13:15 -0500 |
commit | 619daa2e4c80881d64875db22029a2181f07eaf9 (patch) | |
tree | 59a73ca4f9dc1b83194befab40fb89673404f0b2 /arch/frv/mb93090-mb00 | |
parent | 48d68773629d52ef118cd3f78eef7545d68517ef (diff) |
[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>
Diffstat (limited to 'arch/frv/mb93090-mb00')
-rw-r--r-- | arch/frv/mb93090-mb00/pci-frv.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/arch/frv/mb93090-mb00/pci-frv.c b/arch/frv/mb93090-mb00/pci-frv.c index 83e5489cf039..0a26bf6f1cd4 100644 --- a/arch/frv/mb93090-mb00/pci-frv.c +++ b/arch/frv/mb93090-mb00/pci-frv.c | |||
@@ -142,9 +142,7 @@ static void __init pcibios_allocate_resources(int pass) | |||
142 | u16 command; | 142 | u16 command; |
143 | struct resource *r, *pr; | 143 | struct resource *r, *pr; |
144 | 144 | ||
145 | while (dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev), | 145 | for_each_pci_dev(dev) { |
146 | dev != NULL | ||
147 | ) { | ||
148 | pci_read_config_word(dev, PCI_COMMAND, &command); | 146 | pci_read_config_word(dev, PCI_COMMAND, &command); |
149 | for(idx = 0; idx < 6; idx++) { | 147 | for(idx = 0; idx < 6; idx++) { |
150 | r = &dev->resource[idx]; | 148 | r = &dev->resource[idx]; |
@@ -188,9 +186,7 @@ static void __init pcibios_assign_resources(void) | |||
188 | int idx; | 186 | int idx; |
189 | struct resource *r; | 187 | struct resource *r; |
190 | 188 | ||
191 | while (dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev), | 189 | for_each_pci_dev(dev) { |
192 | dev != NULL | ||
193 | ) { | ||
194 | int class = dev->class >> 8; | 190 | int class = dev->class >> 8; |
195 | 191 | ||
196 | /* Don't touch classless devices and host bridges */ | 192 | /* Don't touch classless devices and host bridges */ |