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

PCI: remove usage of pci_for_each_dev() in arch/ppc64/kernel/pci.c

parent 38264c04
...@@ -117,13 +117,13 @@ static void fixup_windbond_82c105(struct pci_dev* dev) ...@@ -117,13 +117,13 @@ static void fixup_windbond_82c105(struct pci_dev* dev)
*/ */
struct pci_dev *pci_find_dev_by_addr(unsigned long addr) struct pci_dev *pci_find_dev_by_addr(unsigned long addr)
{ {
struct pci_dev *dev; struct pci_dev *dev = NULL;
int i; int i;
unsigned long ioaddr; unsigned long ioaddr;
ioaddr = (addr > isa_io_base) ? addr - isa_io_base : 0; ioaddr = (addr > isa_io_base) ? addr - isa_io_base : 0;
pci_for_each_dev(dev) { while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
if ((dev->class >> 16) == PCI_BASE_CLASS_BRIDGE) if ((dev->class >> 16) == PCI_BASE_CLASS_BRIDGE)
continue; continue;
for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
......
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