From: Kevin Corry Date: Wed, 2 May 2007 17:11:49 +0000 (+1000) Subject: [POWERPC] Change topology_init() to a subsys_initcall X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e9e77ce8718def7838626aa52bed02fe1b9837b9;p=linux-beck.git [POWERPC] Change topology_init() to a subsys_initcall Change the powerpc version of topology_init() from an __initcall to a subsys_initcall to match all other architectures. Signed-off-by: Kevin Corry Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c index 933e214c33e8..cae39d9dfe48 100644 --- a/arch/powerpc/kernel/sysfs.c +++ b/arch/powerpc/kernel/sysfs.c @@ -499,4 +499,4 @@ static int __init topology_init(void) return 0; } -__initcall(topology_init); +subsys_initcall(topology_init);