Commit b4f66ad8 authored by Teodora Baluta's avatar Teodora Baluta Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: put trailing statements on next line



This patch fixes the following type of checkpatch.pl errors in
drivers/staging/vt6655/bssdb.c file:

ERROR: trailing statements should be on next line

Signed-off-by: default avatarTeodora Baluta <teobaluta@gmail.com>
Reviewed-by: default avatarLisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 347a0475
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -142,7 +142,8 @@ BSSpSearchBSSList(
		/* match BSSID first */
		for (ii = 0; ii < MAX_BSS_NUM; ii++) {
			pCurrBSS = &(pMgmt->sBSSList[ii]);
			if (pDevice->bLinkPass == false) pCurrBSS->bSelected = false;
			if (pDevice->bLinkPass == false)
				pCurrBSS->bSelected = false;
			if ((pCurrBSS->bActive) &&
			    (pCurrBSS->bSelected == false)) {
				if (ether_addr_equal(pCurrBSS->abyBSSID,
@@ -940,7 +941,8 @@ BSSvSecondCallBack(
		if (pDevice->bHWRadioOff == true) {
			if (!(pDevice->byGPIO & GPIO0_DATA))
			{
				if (status == 1) goto start;
				if (status == 1)
					goto start;
				status = 1;
				CARDbRadioPowerOff(pDevice);
				pMgmt->sNodeDBTable[0].bActive = false;
@@ -951,14 +953,16 @@ BSSvSecondCallBack(
			}
			if (pDevice->byGPIO & GPIO0_DATA)
			{
				if (status == 2) goto start;
				if (status == 2)
					goto start;
				status = 2;
				CARDbRadioPowerOn(pDevice);
			}
		} else {
			if (pDevice->byGPIO & GPIO0_DATA)
			{
				if (status == 3) goto start;
				if (status == 3)
					goto start;
				status = 3;
				CARDbRadioPowerOff(pDevice);
				pMgmt->sNodeDBTable[0].bActive = false;
@@ -969,7 +973,8 @@ BSSvSecondCallBack(
			}
			if (!(pDevice->byGPIO & GPIO0_DATA))
			{
				if (status == 4) goto start;
				if (status == 4)
					goto start;
				status = 4;
				CARDbRadioPowerOn(pDevice);
			}