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:
parent
97d59f8743
commit
820c9b1215
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user