Commit 156660f3 authored by Cheah Kok Cheong's avatar Cheah Kok Cheong Committed by Sasha Levin

Staging: comedi: comedi_fops: Avoid orphaned proc entry

[ Upstream commit bf279ece ]

Move comedi_proc_init to the end to avoid orphaned proc entry
if module loading failed.
Signed-off-by: default avatarCheah Kok Cheong <thrust73@gmail.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
parent 773853e9
......@@ -2875,9 +2875,6 @@ static int __init comedi_init(void)
comedi_class->dev_groups = comedi_dev_groups;
/* XXX requires /proc interface */
comedi_proc_init();
/* create devices files for legacy/manual use */
for (i = 0; i < comedi_num_legacy_minors; i++) {
struct comedi_device *dev;
......@@ -2895,6 +2892,9 @@ static int __init comedi_init(void)
mutex_unlock(&dev->mutex);
}
/* XXX requires /proc interface */
comedi_proc_init();
return 0;
}
module_init(comedi_init);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment