From akpm@osdl.org Sun Nov 6 23:40:10 2005 Message-Id: <200511070739.jA77det8023277@shell0.pdx.osdl.net> Subject: PCI: pci_find_device remove (frv/mb93090-mb00/pci-frv.c) To: greg@kroah.com Cc: akpm@osdl.org, jirislaby@gmail.com, xslaby@fi.muni.cz From: akpm@osdl.org Date: Sun, 06 Nov 2005 23:39:33 -0800 From: Jiri Slaby Signed-off-by: Jiri Slaby Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- arch/frv/mb93090-mb00/pci-frv.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) --- gregkh-2.6.orig/arch/frv/mb93090-mb00/pci-frv.c +++ gregkh-2.6/arch/frv/mb93090-mb00/pci-frv.c @@ -142,9 +142,7 @@ static void __init pcibios_allocate_reso 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_resour 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 */