aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-05-10 00:10:46 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-05-10 00:10:46 -0700
commitb081d0feb160ad4aca8a00dcd443cf0dd07ec680 (patch)
tree4a96a7751a2120e91643995374e761caa3e7904d /kernel
parent3d207d0b867e568f4f6cf31c40ae1b446a493ae0 (diff)
downloadhistory-b081d0feb160ad4aca8a00dcd443cf0dd07ec680.tar.gz
[PATCH] Make usermodehelper_init() use core_initcall()
We may as well make usermodehelper_init() core_initcall as well, to make sure its services are avaialble to all the other initcall levels.
Diffstat (limited to 'kernel')
-rw-r--r--kernel/kmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kmod.c b/kernel/kmod.c
index 8754003bbbf2c6..10d2e8fc58db20 100644
--- a/kernel/kmod.c
+++ b/kernel/kmod.c
@@ -269,4 +269,4 @@ static __init int usermodehelper_init(void)
BUG_ON(!khelper_wq);
return 0;
}
-__initcall(usermodehelper_init);
+core_initcall(usermodehelper_init);