summaryrefslogtreecommitdiff
path: root/drivers/staging/isdn
diff options
context:
space:
mode:
authorThiago Bonotto <thbonotto@gmail.com>2019-08-02 20:23:23 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-08-03 09:08:00 +0200
commit7cbf0108247da2001a591583d2fc6433918b8a47 (patch)
tree3773e11a764d9653935a8002c9e26c0cd98fd0ca /drivers/staging/isdn
parent8ca9d8ad30f39651d6ff9428aaeb1940489a7754 (diff)
staging: isdn: remove unnecessary parentheses
Fix the following checkpatch error: ERROR: return is not a function, parentheses are not required FILE: drivers/staging/isdn/hysdn/hysdn_net.c:289: + return (0); /* and return success */ Signed-off-by: Thiago Bonotto <thbonotto@gmail.com> Link: https://lore.kernel.org/r/20190802202323.27117-1-thbonotto@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_net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/isdn/hysdn/hysdn_net.c b/drivers/staging/isdn/hysdn/hysdn_net.c
index bea37ae30ebb..dcb9ef7a2651 100644
--- a/drivers/staging/isdn/hysdn/hysdn_net.c
+++ b/drivers/staging/isdn/hysdn/hysdn_net.c
@@ -286,7 +286,7 @@ hysdn_net_create(hysdn_card *card)
if (card->debug_flags & LOG_NET_INIT)
hysdn_addlog(card, "network device created");
- return (0); /* and return success */
+ return 0; /* and return success */
} /* hysdn_net_create */
/***************************************************************************/