Staging: comedi: proc: Warn if unable to create proc entry
authorCheah Kok Cheong <thrust73@gmail.com>
Fri, 30 Dec 2016 11:27:41 +0000 (19:27 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Jan 2017 14:30:21 +0000 (15:30 +0100)
The proc entry is not essential for the comedi system as
evident by the support for !CONFIG_PROC_FS. So for failure
to create, just warn and continue loading.

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>
drivers/staging/comedi/proc.c

index 99b23b2e32dd632bceddef1673914e316f33dd9d..2644dd4d6143bb65ac5c55031f000946f847dadc 100644 (file)
@@ -89,7 +89,8 @@ static const struct file_operations comedi_proc_fops = {
 
 void __init comedi_proc_init(void)
 {
-       proc_create("comedi", 0444, NULL, &comedi_proc_fops);
+       if (!proc_create("comedi", 0444, NULL, &comedi_proc_fops))
+               pr_warn("comedi: unable to create proc entry\n");
 }
 
 void comedi_proc_cleanup(void)