diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-05-10 00:10:46 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-05-10 00:10:46 -0700 |
| commit | b081d0feb160ad4aca8a00dcd443cf0dd07ec680 (patch) | |
| tree | 4a96a7751a2120e91643995374e761caa3e7904d | |
| parent | 3d207d0b867e568f4f6cf31c40ae1b446a493ae0 (diff) | |
[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.
| -rw-r--r-- | kernel/kmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kmod.c b/kernel/kmod.c index 8754003bbbf2..10d2e8fc58db 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); |
