Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 820c9b12 authored by Nandini Hanumanthagowda's avatar Nandini Hanumanthagowda Committed by Greg Kroah-Hartman
Browse files

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: default avatarNandini Hanumanthagowda <nandu.hgowda@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 97d59f87
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;

}