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>
This commit is contained in:
Giridhar Prasath R 2019-08-07 07:33:31 +05:30 committed by Greg Kroah-Hartman
parent 4f4139e021
commit 5222a8fe6b

View File

@ -382,7 +382,7 @@ hysdn_procconf_init(void)
}
printk(KERN_NOTICE "HYSDN: procfs initialised\n");
return (0);
return 0;
} /* hysdn_procconf_init */
/*************************************************************************************/