summaryrefslogtreecommitdiff
path: root/drivers/staging/isdn
diff options
context:
space:
mode:
authorGiridhar Prasath R <cristianoprasath@gmail.com>2019-08-07 07:33:31 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-08-08 18:59:19 +0200
commit5222a8fe6bd0135bd87a629d8d182f951b4ffeae (patch)
tree3bb71a0987448e758431fbedbf88dcb57b3767eb /drivers/staging/isdn
parent4f4139e0213516e74cc22fc9787671f325c2b66b (diff)
staging: isdn: hysdn_procconf_init() remove parantheses from return value
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>
Diffstat (limited to 'drivers/staging/isdn')
-rw-r--r--drivers/staging/isdn/hysdn/hysdn_procconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/isdn/hysdn/hysdn_procconf.c b/drivers/staging/isdn/hysdn/hysdn_procconf.c
index 73079213ec94..48afd9f5316e 100644
--- a/drivers/staging/isdn/hysdn/hysdn_procconf.c
+++ b/drivers/staging/isdn/hysdn/hysdn_procconf.c
@@ -382,7 +382,7 @@ hysdn_procconf_init(void)
}
printk(KERN_NOTICE "HYSDN: procfs initialised\n");
- return (0);
+ return 0;
} /* hysdn_procconf_init */
/*************************************************************************************/