aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/sysfs.c
diff options
context:
space:
mode:
authorKevin Corry <kevcorry@us.ibm.com>2007-05-03 03:11:49 +1000
committerPaul Mackerras <paulus@samba.org>2007-05-07 20:31:13 +1000
commite9e77ce8718def7838626aa52bed02fe1b9837b9 (patch)
tree008a651285d5281263461bdf12be6893aa2725f4 /arch/powerpc/kernel/sysfs.c
parent[POWERPC] MPIC sys_device & suspend/resume (diff)
downloadlinux-dev-e9e77ce8718def7838626aa52bed02fe1b9837b9.tar.xz
linux-dev-e9e77ce8718def7838626aa52bed02fe1b9837b9.zip
[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 <kevcorry@us.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to '')
-rw-r--r--arch/powerpc/kernel/sysfs.c2
1 files changed, 1 insertions, 1 deletions
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);