summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6655/baseband.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-03-19 07:55:38 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-25 22:16:17 +0400
commita4ef27ad02e0bfd165e81d6a4f3771ace42ebe41 (patch)
tree70afcff9753616b606e3657cb4a98301d6e452b3 /drivers/staging/vt6655/baseband.c
parent5e0cc8a231be82b0ec44cdf2a406b1a97dd3c971 (diff)
downloadlinux-a4ef27ad02e0bfd165e81d6a4f3771ace42ebe41.tar.xz
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/baseband.c')
-rw-r--r--drivers/staging/vt6655/baseband.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
index 3b7cc366ec79..8df3973dd262 100644
--- a/drivers/staging/vt6655/baseband.c
+++ b/drivers/staging/vt6655/baseband.c
@@ -1805,7 +1805,7 @@ BBuGetFrameTime(
uFrameTime++;
}
- return (uPreamble + uFrameTime);
+ return uPreamble + uFrameTime;
} else {
uFrameTime = (cbFrameLength * 8 + 22) / uRate; //????????
uTmp = ((uFrameTime * uRate) - 22) / 8;
@@ -1816,7 +1816,7 @@ BBuGetFrameTime(
if (byPktType != PK_TYPE_11A) {
uFrameTime += 6; //??????
}
- return (20 + uFrameTime); //??????
+ return 20 + uFrameTime; //??????
}
}