Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 206049
b: refs/heads/master
c: 5a5a2a6
h: refs/heads/master
i:
  206047: 1c48a86
v: v3
  • Loading branch information
Charles Clément authored and Greg Kroah-Hartman committed Aug 3, 2010
1 parent e6893ce commit f8f2a29
Show file tree
Hide file tree
Showing 31 changed files with 582 additions and 590 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1b12068a804711ae2f4fd2876d5706542c1d7ad9
refs/heads/master: 5a5a2a6ad4aa2467bcc34fa50e85c2afc90bab05
6 changes: 3 additions & 3 deletions trunk/drivers/staging/vt6655/IEEE11h.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ static BOOL s_bRxTPCReq(PSMgmtObject pMgmt, PWLAN_FRAME_TPCREQ pTPCReq, unsigned
pTxPacket->cbMPDULen = sizeof(WLAN_FRAME_TPCREP);
pTxPacket->cbPayloadLen = sizeof(WLAN_FRAME_TPCREP) - WLAN_HDR_ADDR3_LEN;
if (csMgmt_xmit(pMgmt->pAdapter, pTxPacket) != CMD_STATUS_PENDING)
return (FALSE);
return (false);
return (true);
// return (CARDbSendPacket(pMgmt->pAdapter, pFrame, PKT_TYPE_802_11_MNG, sizeof(WLAN_FRAME_TPCREP)));

Expand Down Expand Up @@ -218,7 +218,7 @@ IEEE11hbMgrRxAction (
// decode the frame
uLength = ((PSRxMgmtPacket)pRxPacket)->cbMPDULen;
if (uLength > WLAN_A3FR_MAXLEN) {
return (FALSE);
return (false);
}


Expand Down Expand Up @@ -297,7 +297,7 @@ BOOL IEEE11hbMSRRepTx (
pTxPacket->cbMPDULen = uLength;
pTxPacket->cbPayloadLen = uLength - WLAN_HDR_ADDR3_LEN;
if (csMgmt_xmit(pMgmt->pAdapter, pTxPacket) != CMD_STATUS_PENDING)
return (FALSE);
return (false);
return (true);
// return (CARDbSendPacket(pMgmt->pAdapter, pMSRRep, PKT_TYPE_802_11_MNG, uLength));

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/vt6655/aes_ccmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ unsigned char *pbyIV;
unsigned char *pbyPayload;
unsigned short wHLen = 22;
unsigned short wPayloadSize = wFrameSize - 8 - 8 - 4 - WLAN_HDR_ADDR3_LEN;//8 is IV, 8 is MIC, 4 is CRC
BOOL bA4 = FALSE;
BOOL bA4 = false;
unsigned char byTmp;
unsigned short wCnt;
int ii,jj,kk;
Expand Down Expand Up @@ -396,7 +396,7 @@ int ii,jj,kk;
if ( !memcmp(abyMIC,abyTmp,8) ) {
return true;
} else {
return FALSE;
return false;
}

}
22 changes: 11 additions & 11 deletions trunk/drivers/staging/vt6655/baseband.c
Original file line number Diff line number Diff line change
Expand Up @@ -1862,7 +1862,7 @@ BBvCaculateParameter (
BOOL bCCK = pDevice->bCCK;

cbBitCount = cbFrameLength * 8;
bExtBit = FALSE;
bExtBit = false;

switch (wRate) {
case RATE_1M :
Expand All @@ -1879,7 +1879,7 @@ BBvCaculateParameter (
break;

case RATE_5M :
if (bCCK == FALSE)
if (bCCK == false)
cbBitCount ++;
cbUsCount = (cbBitCount * 10) / 55;
cbTmp = (cbUsCount * 55) / 10;
Expand All @@ -1893,7 +1893,7 @@ BBvCaculateParameter (

case RATE_11M :

if (bCCK == FALSE)
if (bCCK == false)
cbBitCount ++;
cbUsCount = cbBitCount / 11;
cbTmp = cbUsCount * 11;
Expand Down Expand Up @@ -2012,7 +2012,7 @@ BBvCaculateParameter (
* Out:
* pbyData - data read
*
* Return Value: true if succeeded; FALSE if failed.
* Return Value: true if succeeded; false if failed.
*
*/
BOOL BBbReadEmbeded (unsigned long dwIoBase, unsigned char byBBAddr, unsigned char *pbyData)
Expand All @@ -2038,7 +2038,7 @@ BOOL BBbReadEmbeded (unsigned long dwIoBase, unsigned char byBBAddr, unsigned ch
if (ww == W_MAX_TIMEOUT) {
DBG_PORT80(0x30);
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" DBG_PORT80(0x30)\n");
return FALSE;
return false;
}
return true;
}
Expand All @@ -2055,7 +2055,7 @@ BOOL BBbReadEmbeded (unsigned long dwIoBase, unsigned char byBBAddr, unsigned ch
* Out:
* none
*
* Return Value: true if succeeded; FALSE if failed.
* Return Value: true if succeeded; false if failed.
*
*/
BOOL BBbWriteEmbeded (unsigned long dwIoBase, unsigned char byBBAddr, unsigned char byData)
Expand All @@ -2080,7 +2080,7 @@ BOOL BBbWriteEmbeded (unsigned long dwIoBase, unsigned char byBBAddr, unsigned c
if (ww == W_MAX_TIMEOUT) {
DBG_PORT80(0x31);
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" DBG_PORT80(0x31)\n");
return FALSE;
return false;
}
return true;
}
Expand All @@ -2097,7 +2097,7 @@ BOOL BBbWriteEmbeded (unsigned long dwIoBase, unsigned char byBBAddr, unsigned c
* Out:
* none
*
* Return Value: true if all TestBits are set; FALSE otherwise.
* Return Value: true if all TestBits are set; false otherwise.
*
*/
BOOL BBbIsRegBitsOn (unsigned long dwIoBase, unsigned char byBBAddr, unsigned char byTestBits)
Expand All @@ -2120,7 +2120,7 @@ BOOL BBbIsRegBitsOn (unsigned long dwIoBase, unsigned char byBBAddr, unsigned ch
* Out:
* none
*
* Return Value: true if all TestBits are clear; FALSE otherwise.
* Return Value: true if all TestBits are clear; false otherwise.
*
*/
BOOL BBbIsRegBitsOff (unsigned long dwIoBase, unsigned char byBBAddr, unsigned char byTestBits)
Expand All @@ -2142,7 +2142,7 @@ BOOL BBbIsRegBitsOff (unsigned long dwIoBase, unsigned char byBBAddr, unsigned c
* Out:
* none
*
* Return Value: true if succeeded; FALSE if failed.
* Return Value: true if succeeded; false if failed.
*
*/

Expand Down Expand Up @@ -2294,7 +2294,7 @@ BOOL BBbVT3253Init (PSDevice pDevice)
//}} RobertYu
} else {
// No VGA Table now
pDevice->bUpdateBBVGA = FALSE;
pDevice->bUpdateBBVGA = false;
pDevice->abyBBVGA[0] = 0x1C;
}

Expand Down
Loading

0 comments on commit f8f2a29

Please sign in to comment.