提交 8d8c90e3 编写于 作者: M Michael Buesch 提交者: David S. Miller

ssb: Fix initcall ordering

ssb must init after PCI but before the ssb drivers.
Signed-off-by: NMichael Buesch <mb@bu3sch.de>
Cc: Christian Casteyde <casteyde.christian@free.fr>
Fixes-bug: #9219
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 94e10bfb
......@@ -1147,7 +1147,10 @@ static int __init ssb_modinit(void)
return err;
}
subsys_initcall(ssb_modinit);
/* ssb must be initialized after PCI but before the ssb drivers.
* That means we must use some initcall between subsys_initcall
* and device_initcall. */
fs_initcall(ssb_modinit);
static void __exit ssb_modexit(void)
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册