diff options
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/exitcode.c | 2 | ||||
-rw-r--r-- | arch/um/kernel/process.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/kernel/exitcode.c b/arch/um/kernel/exitcode.c index 984f80e668ca..6540d2c9fbb7 100644 --- a/arch/um/kernel/exitcode.c +++ b/arch/um/kernel/exitcode.c | |||
@@ -59,7 +59,7 @@ static int make_proc_exitcode(void) | |||
59 | { | 59 | { |
60 | struct proc_dir_entry *ent; | 60 | struct proc_dir_entry *ent; |
61 | 61 | ||
62 | ent = create_proc_entry("exitcode", 0600, &proc_root); | 62 | ent = create_proc_entry("exitcode", 0600, NULL); |
63 | if (ent == NULL) { | 63 | if (ent == NULL) { |
64 | printk(KERN_WARNING "make_proc_exitcode : Failed to register " | 64 | printk(KERN_WARNING "make_proc_exitcode : Failed to register " |
65 | "/proc/exitcode\n"); | 65 | "/proc/exitcode\n"); |
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c index e8cb9ff183e9..83603cfbde81 100644 --- a/arch/um/kernel/process.c +++ b/arch/um/kernel/process.c | |||
@@ -364,7 +364,7 @@ int __init make_proc_sysemu(void) | |||
364 | if (!sysemu_supported) | 364 | if (!sysemu_supported) |
365 | return 0; | 365 | return 0; |
366 | 366 | ||
367 | ent = create_proc_entry("sysemu", 0600, &proc_root); | 367 | ent = create_proc_entry("sysemu", 0600, NULL); |
368 | 368 | ||
369 | if (ent == NULL) | 369 | if (ent == NULL) |
370 | { | 370 | { |