diff --git a/drivers/staging/vt6656/80211mgr.c b/drivers/staging/vt6656/80211mgr.c index fda7224428c0..8b1ffe9f2405 100644 --- a/drivers/staging/vt6656/80211mgr.c +++ b/drivers/staging/vt6656/80211mgr.c @@ -18,7 +18,7 @@ * * File: 80211mgr.c * - * Purpose: Handles the managment frame parsing functions + * Purpose: Handles the 802.11 managment support functions * * Author: Lyndon Chen * @@ -746,7 +746,6 @@ vMgrDecodeProbeResponse( ) { PWLAN_IE pItem; - // BYTE byCheckEID = 0; pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf; @@ -764,13 +763,6 @@ vMgrDecodeProbeResponse( + WLAN_PROBERESP_OFF_SSID); while( ((PBYTE)pItem) < (pFrame->pBuf + pFrame->len) ) { - - //20080701-01, by Mike Liu - // if (pItem->byElementID < byCheckEID) - // break; - //else - //byCheckEID = pItem->byElementID; - switch (pItem->byElementID) { case WLAN_EID_SSID: if (pFrame->pSSID == NULL) diff --git a/drivers/staging/vt6656/baseband.c b/drivers/staging/vt6656/baseband.c index 7b43ceabecc0..7057d3e3317e 100644 --- a/drivers/staging/vt6656/baseband.c +++ b/drivers/staging/vt6656/baseband.c @@ -743,7 +743,7 @@ BBuGetFrameTime ( } else { uPreamble = 192; } - uFrameTime = (cbFrameLength * 80) / uRate; + uFrameTime = (cbFrameLength * 80) / uRate; //????? uTmp = (uFrameTime * uRate) / 80; if (cbFrameLength != uTmp) { uFrameTime ++; @@ -752,16 +752,16 @@ BBuGetFrameTime ( return (uPreamble + uFrameTime); } else { - uFrameTime = (cbFrameLength * 8 + 22) / uRate; + uFrameTime = (cbFrameLength * 8 + 22) / uRate; //???????? uTmp = ((uFrameTime * uRate) - 22) / 8; if(cbFrameLength != uTmp) { uFrameTime ++; } - uFrameTime = uFrameTime * 4; + uFrameTime = uFrameTime * 4; //??????? if(byPktType != PK_TYPE_11A) { uFrameTime += 6; } - return (20 + uFrameTime); + return (20 + uFrameTime); //?????? } } diff --git a/drivers/staging/vt6656/hostap.c b/drivers/staging/vt6656/hostap.c index 887e93f99995..02743a62b8fb 100644 --- a/drivers/staging/vt6656/hostap.c +++ b/drivers/staging/vt6656/hostap.c @@ -113,7 +113,7 @@ static int hostap_enable_hostapd(PSDevice pDevice, int rtnl_locked) DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: Enabling hostapd mode\n", dev->name); pDevice->apdev = (struct net_device *)kmalloc(sizeof(struct net_device), GFP_KERNEL); - if (pDevice->apdev == NULL) + if (pDevice->apdev == NULL) return -ENOMEM; memset(pDevice->apdev, 0, sizeof(struct net_device));