projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3669e93
)
[POWERPC] Change topology_init() to a subsys_initcall
author
Kevin Corry
<kevcorry@us.ibm.com>
Wed, 2 May 2007 17:11:49 +0000
(
03:11
+1000)
committer
Paul Mackerras
<paulus@samba.org>
Mon, 7 May 2007 10:31:13 +0000
(20:31 +1000)
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>
arch/powerpc/kernel/sysfs.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/powerpc/kernel/sysfs.c
b/arch/powerpc/kernel/sysfs.c
index 933e214c33e8a835ed1614afa399b37b9506ceda..cae39d9dfe48add64f8be93cff924f630003cfd4 100644
(file)
--- 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);