mirror of https://gitee.com/openkylin/linux.git
Staging: comedi: comedi_fops: Avoid orphaned proc entry
Move comedi_proc_init to the end to avoid orphaned proc entry if module loading failed. Signed-off-by: Cheah Kok Cheong <thrust73@gmail.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3358a0ca21
commit
bf279ece37
|
@ -2898,9 +2898,6 @@ static int __init comedi_init(void)
|
||||||
|
|
||||||
comedi_class->dev_groups = comedi_dev_groups;
|
comedi_class->dev_groups = comedi_dev_groups;
|
||||||
|
|
||||||
/* XXX requires /proc interface */
|
|
||||||
comedi_proc_init();
|
|
||||||
|
|
||||||
/* create devices files for legacy/manual use */
|
/* create devices files for legacy/manual use */
|
||||||
for (i = 0; i < comedi_num_legacy_minors; i++) {
|
for (i = 0; i < comedi_num_legacy_minors; i++) {
|
||||||
struct comedi_device *dev;
|
struct comedi_device *dev;
|
||||||
|
@ -2917,6 +2914,9 @@ static int __init comedi_init(void)
|
||||||
mutex_unlock(&dev->mutex);
|
mutex_unlock(&dev->mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* XXX requires /proc interface */
|
||||||
|
comedi_proc_init();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
module_init(comedi_init);
|
module_init(comedi_init);
|
||||||
|
|
Loading…
Reference in New Issue