diff options
author | Joe Perches <joe@perches.com> | 2013-03-18 20:55:38 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-25 11:16:17 -0700 |
commit | a4ef27ad02e0bfd165e81d6a4f3771ace42ebe41 (patch) | |
tree | 70afcff9753616b606e3657cb4a98301d6e452b3 /drivers/staging/vt6655/rf.c | |
parent | 5e0cc8a231be82b0ec44cdf2a406b1a97dd3c971 (diff) |
staging: vt6655: Remove unnecessary parentheses from returns
Returns aren't functions, remove the parentheses to be
more kernel style like.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/rf.c')
-rw-r--r-- | drivers/staging/vt6655/rf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c index 015fa79d19fb..2eab18bea685 100644 --- a/drivers/staging/vt6655/rf.c +++ b/drivers/staging/vt6655/rf.c @@ -1059,7 +1059,7 @@ bool RFbRawSetPower( unsigned long dwMax7230Pwr = 0; if (byPwr >= pDevice->byMaxPwrLevel) { - return (false); + return false; } switch (pDevice->byRFType) { |