diff options
author | Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> | 2019-03-21 13:35:36 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-03-21 22:08:07 +0300 |
commit | 4a278a92958dfda6d0954957402338026f55d84a (patch) | |
tree | b379f5117012ac8b11a9920d9eefeee5e5736de4 /drivers/staging/vt6655 | |
parent | 1f176773fac02e52ded0626614b1de11c6b1ce82 (diff) | |
download | linux-4a278a92958dfda6d0954957402338026f55d84a.tar.xz |
staging: vt6655: lines should not end with a parenthesis
Adjust code to fix the style issue – lines should not end with a
parenthesis.
Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655')
-rw-r--r-- | drivers/staging/vt6655/rf.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c index 808cfaf08888..15b927082a8c 100644 --- a/drivers/staging/vt6655/rf.c +++ b/drivers/staging/vt6655/rf.c @@ -828,11 +828,8 @@ bool RFbSetPower( * */ -bool RFbRawSetPower( - struct vnt_private *priv, - unsigned char byPwr, - unsigned int rate -) +bool RFbRawSetPower(struct vnt_private *priv, unsigned char byPwr, + unsigned int rate) { bool ret = true; unsigned long dwMax7230Pwr = 0; |