Commit 2ed6cd2c authored by Kai Germaschewski's avatar Kai Germaschewski

Make USB core init an subsys_initcall, like the other buses.

As it's linked after PCI, usb_init() will be called after pci_init(),
which is an subsys_initcall, too. Subtle, but right.
parent 50b1b006
......@@ -2614,7 +2614,7 @@ static void __exit usb_exit(void)
usb_hub_cleanup();
}
module_init(usb_init);
subsys_initcall(usb_init);
module_exit(usb_exit);
/*
......
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