Commit 80fc6c72 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] PCI: remove pci_for_each_bus() usage from arch/ia64/hp/common/sba_iommu.c

parent 19ff50ad
...@@ -1939,8 +1939,8 @@ sba_init(void) ...@@ -1939,8 +1939,8 @@ sba_init(void)
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
{ {
struct pci_bus *b; struct pci_bus *b = NULL;
pci_for_each_bus(b) while ((b = pci_find_next_bus(b)) != NULL)
sba_connect_bus(b); sba_connect_bus(b);
} }
#endif #endif
......
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