Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d8c90e3 authored by Michael Buesch's avatar Michael Buesch Committed by David S. Miller
Browse files

ssb: Fix initcall ordering



ssb must init after PCI but before the ssb drivers.

Signed-off-by: default avatarMichael Buesch <mb@bu3sch.de>
Cc: Christian Casteyde <casteyde.christian@free.fr>
Fixes-bug: #9219
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 94e10bfb
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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)
{