瀏覽代碼

[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>
Kevin Corry 18 年之前
父節點
當前提交
e9e77ce871
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/powerpc/kernel/sysfs.c

+ 1 - 1
arch/powerpc/kernel/sysfs.c

@@ -499,4 +499,4 @@ static int __init topology_init(void)
 
 
 	return 0;
 	return 0;
 }
 }
-__initcall(topology_init);
+subsys_initcall(topology_init);