Commit bdb25c20 authored by David S. Miller's avatar David S. Miller

arch/sparc64/kernel/pci.c:pcic_present Invoke pci_is_controller.

parent 999a5134
...@@ -148,7 +148,7 @@ int pcic_present(void) ...@@ -148,7 +148,7 @@ int pcic_present(void)
len = prom_getproperty(node, "compatible", len = prom_getproperty(node, "compatible",
namebuf, sizeof(namebuf)); namebuf, sizeof(namebuf));
if (len > 0) if (len > 0)
ret = pci_controller_init(namebuf, len, node); ret = pci_is_controller(namebuf, len, node);
} }
if (ret) if (ret)
return ret; return ret;
......
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