staging: vt6656: removed parenthesis from return statement
authorNandini Hanumanthagowda <nandu.hgowda@gmail.com>
Tue, 12 Nov 2013 17:35:37 +0000 (23:05 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Nov 2013 00:06:22 +0000 (16:06 -0800)
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>
drivers/staging/vt6656/wcmd.c

index fa6234bbca116bc0b5251038c6c6707ff6da6f42..246a266556a3221e39cca3544e6b254f4d834db9 100644 (file)
@@ -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;
 
 }
 
This page took 0.025513 seconds and 5 git commands to generate.