aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Gorski <[email protected]>2013-03-19 13:20:19 +0000
committerRalf Baechle <[email protected]>2013-03-19 19:15:47 +0100
commit1762c5ab7ce5f482aafaf9b6a721e41f073ae3cb (patch)
treea986a91e1049d9b2ddd82cb59e803c09b0b31774
parent97367519d7dac94de566796f034d5f72cbc671f7 (diff)
Revert "MIPS: BCM63XX: Call board_register_device from device_initcall()"
This commit causes a race between PCI scan and SSB fallback SPROM handler registration, causing the wifi to not work on slower systems. The only subsystem touched from board_register_devices is platform device registration, which is safe as an arch init call. This reverts commit d64ed7ada2f689d2c62af1892ca55e47d3653e36 [MIPS: BCM63XX: Call board_register_device from device_initcall()]. Signed-off-by: Jonas Gorski <[email protected]> To: [email protected] Cc: John Crispin <[email protected]> Cc: Maxime Bizon <[email protected]> Cc: Florian Fainelli <[email protected]> Cc: Kevin Cernekee <[email protected]> Signed-off-by: Ralf Baechle <[email protected]>
-rw-r--r--arch/mips/bcm63xx/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm63xx/setup.c b/arch/mips/bcm63xx/setup.c
index 314231be788c..35e18e98beb9 100644
--- a/arch/mips/bcm63xx/setup.c
+++ b/arch/mips/bcm63xx/setup.c
@@ -157,4 +157,4 @@ int __init bcm63xx_register_devices(void)
return board_register_devices();
}
-device_initcall(bcm63xx_register_devices);
+arch_initcall(bcm63xx_register_devices);