mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
create_proc_cpu_mask() doesn't need an argument...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
b177a29251
commit
fbd387aea0
3 changed files with 6 additions and 8 deletions
|
@ -462,10 +462,10 @@ static const struct file_operations prof_cpu_mask_proc_fops = {
|
|||
.write = prof_cpu_mask_proc_write,
|
||||
};
|
||||
|
||||
void create_prof_cpu_mask(struct proc_dir_entry *root_irq_dir)
|
||||
void create_prof_cpu_mask(void)
|
||||
{
|
||||
/* create /proc/irq/prof_cpu_mask */
|
||||
proc_create("prof_cpu_mask", 0600, root_irq_dir, &prof_cpu_mask_proc_fops);
|
||||
proc_create("irq/prof_cpu_mask", 0600, NULL, &prof_cpu_mask_proc_fops);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue