summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6656
diff options
context:
space:
mode:
authorNandini Hanumanthagowda <nandu.hgowda@gmail.com>2013-11-12 17:35:37 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-20 00:06:22 (GMT)
commit820c9b12153d83319fdfbba2783ff1c07a1ad817 (patch)
tree247e0583c5e02cf6a8f42c5814db84c9b81c102f /drivers/staging/vt6656
parent97d59f87433d1a4eb6eafcd8b1896e239bf34569 (diff)
downloadlinux-820c9b12153d83319fdfbba2783ff1c07a1ad817.tar.xz
staging: vt6656: removed parenthesis from return statement
parenthesis is not required in return statement since its not a fucntion, hence remove parentheses to comply with linux coding style Signed-off-by: Nandini Hanumanthagowda <nandu.hgowda@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656')
-rw-r--r--drivers/staging/vt6656/wcmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6656/wcmd.c b/drivers/staging/vt6656/wcmd.c
index fa6234b..246a266 100644
--- a/drivers/staging/vt6656/wcmd.c
+++ b/drivers/staging/vt6656/wcmd.c
@@ -1023,7 +1023,7 @@ int bScheduleCommand(struct vnt_private *pDevice,
{
if (pDevice->cbFreeCmdQueue == 0)
- return (false);
+ return false;
pDevice->eCmdQueue[pDevice->uCmdEnqueueIdx].eCmd = eCommand;
pDevice->eCmdQueue[pDevice->uCmdEnqueueIdx].bForceSCAN = true;
memset(pDevice->eCmdQueue[pDevice->uCmdEnqueueIdx].abyCmdDesireSSID, 0 , WLAN_IEHDR_LEN + WLAN_SSID_MAXLEN + 1);
@@ -1064,7 +1064,7 @@ int bScheduleCommand(struct vnt_private *pDevice,
if (pDevice->bCmdRunning == false)
s_bCommandComplete(pDevice);
- return (true);
+ return true;
}