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

Sparc64: Make pcibios_init a subsys_initcall.

parent 55c4dce3
......@@ -181,7 +181,7 @@ extern void rs_init(void);
extern void clock_probe(void);
extern void power_init(void);
void __init pcibios_init(void)
static void __init pcibios_init(void)
{
pci_controller_probe();
if (pci_controller_root == NULL)
......@@ -199,6 +199,8 @@ void __init pcibios_init(void)
power_init();
}
subsys_initcall(pcibios_init);
struct pci_fixup pcibios_fixups[] = {
{ 0 }
};
......
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