staging: isdn: hysdn_procconf_init() remove parantheses from return value
authorGiridhar Prasath R <cristianoprasath@gmail.com>
Wed, 7 Aug 2019 02:03:31 +0000 (07:33 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Aug 2019 16:59:19 +0000 (18:59 +0200)
ERROR: return is not a function, parentheses are not required
FILE: git/kernels/staging/drivers/staging/isdn/hysdn/hysdn_procconf.c:385
+       return (0);

Signed-off-by: Giridhar Prasath R <cristianoprasath@gmail.com>
Link: https://lore.kernel.org/r/20190807020331.19729-1-cristianoprasath@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/isdn/hysdn/hysdn_procconf.c

index 7307921..48afd9f 100644 (file)
@@ -382,7 +382,7 @@ hysdn_procconf_init(void)
        }
 
        printk(KERN_NOTICE "HYSDN: procfs initialised\n");
-       return (0);
+       return 0;
 }                              /* hysdn_procconf_init */
 
 /*************************************************************************************/