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>
This commit is contained in:
Nandini Hanumanthagowda 2013-11-12 23:05:37 +05:30 committed by Greg Kroah-Hartman
parent 97d59f8743
commit 820c9b1215

View 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;
}