Commit 5222a8fe authored by Giridhar Prasath R's avatar Giridhar Prasath R Committed by Greg Kroah-Hartman
Browse files

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: default avatarGiridhar Prasath R <cristianoprasath@gmail.com>
Link: https://lore.kernel.org/r/20190807020331.19729-1-cristianoprasath@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4f4139e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -382,7 +382,7 @@ hysdn_procconf_init(void)
	}

	printk(KERN_NOTICE "HYSDN: procfs initialised\n");
	return (0);
	return 0;
}				/* hysdn_procconf_init */

/*************************************************************************************/