MIPS: AR7: prevent race between clock initialization and devices registration
authorFlorian Fainelli <florian@openwrt.org>
Tue, 11 May 2010 09:20:14 +0000 (11:20 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 21 May 2010 20:31:22 +0000 (21:31 +0100)
commit142a2ceea793b4d134757c226daeb4101d649df0
treed24618a2dba5dd751fedb0e218e50045494d34ba
parent9c1b013a3951671e219c32ca056fc07381a9e113
MIPS: AR7: prevent race between clock initialization and devices registration

ar7_regiser_devices needs ar7_clocks_init to have been called first,
however clock.o is currently linked later due to its order in the Makefile,
therefore ar7_clocks_init always gets called later than ar7_register_devices
because both have the same initcall level. Fix this by moving
ar7_register_devices to the right initcall level.

Reported-by: Michael J. Evans <mjevans1983@gmail.com>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
To: linux-mips@linux-mips.org
Cc: Ralf Baechle <ralf@linux-mips.org>
Patchwork: http://patchwork.linux-mips.org/patch/1212/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/ar7/platform.c