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)
#ifdef CONFIG_PCI
{
struct pci_bus *b;
pci_for_each_bus(b)
struct pci_bus *b = NULL;
while ((b = pci_find_next_bus(b)) != NULL)
sba_connect_bus(b);
}
#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