projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48d6877
)
[PATCH] PCI: pci_find_device remove (frv/mb93090-mb00/pci-frv.c)
author
Jiri Slaby
<jirislaby@gmail.com>
Mon, 7 Nov 2005 07:39:33 +0000
(23:39 -0800)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Mon, 9 Jan 2006 20:13:15 +0000
(12:13 -0800)
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>
arch/frv/mb93090-mb00/pci-frv.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/frv/mb93090-mb00/pci-frv.c
b/arch/frv/mb93090-mb00/pci-frv.c
index 83e5489cf039a308a6407ba986915ed7b8f2e631..0a26bf6f1cd4280ecd682d6de6a6f0c3c2ddd97c 100644
(file)
--- 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)
u16 command;
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);
for(idx = 0; idx < 6; idx++) {
r = &dev->resource[idx];
@@
-188,9
+186,7
@@
static void __init pcibios_assign_resources(void)
int idx;
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;
/* Don't touch classless devices and host bridges */