proc: remove proc_root from drivers
Remove proc_root export. Creation and removal works well if parent PDE is supplied as NULL -- it worked always that way. So, one useless export removed and consistency added, some drivers created PDEs with &proc_root as parent but removed them as NULL and so on. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
928b4d8c89
commit
c74c120a21
@@ -183,7 +183,7 @@ void __init mca_do_proc_init(void)
|
||||
struct proc_dir_entry* node = NULL;
|
||||
struct mca_device *mca_dev;
|
||||
|
||||
proc_mca = proc_mkdir("mca", &proc_root);
|
||||
proc_mca = proc_mkdir("mca", NULL);
|
||||
create_proc_read_entry("pos",0,proc_mca,get_mca_info,NULL);
|
||||
create_proc_read_entry("machine",0,proc_mca,get_mca_machine_info,NULL);
|
||||
|
||||
|
Reference in New Issue
Block a user