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

[PATCH] PCI: remove usage of pci_for_each_dev() in arch/ppc/platforms/gemini_pci.c

parent a7d1c8cc
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
void __init gemini_pcibios_fixup(void) void __init gemini_pcibios_fixup(void)
{ {
int i; int i;
struct pci_dev *dev; struct pci_dev *dev = NULL;
pci_for_each_dev(dev) { while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
for(i = 0; i < 6; i++) { for(i = 0; i < 6; i++) {
if (dev->resource[i].flags & IORESOURCE_IO) { if (dev->resource[i].flags & IORESOURCE_IO) {
dev->resource[i].start |= (0xfe << 24); dev->resource[i].start |= (0xfe << 24);
......
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