ssb must init after PCI but before the ssb drivers. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Cc: Christian Casteyde <casteyde.christian@xxxxxxx> Fixes-bug: #9219 Index: wireless-2.6/drivers/ssb/main.c =================================================================== --- wireless-2.6.orig/drivers/ssb/main.c 2007-10-27 14:54:40.000000000 +0200 +++ wireless-2.6/drivers/ssb/main.c 2007-10-27 14:57:15.000000000 +0200 @@ -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) { - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html