aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/80211mgr.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-03-18 20:55:41 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-25 11:16:17 -0700
commit96d69e201bbdb05c363e899138f9f42bc8ad8f88 (patch)
treef3ba7f8c5436cfbce1617f415febbd681fe78fd4 /drivers/staging/vt6655/80211mgr.c
parentstaging: vt6655: Fix macro definitions (diff)
downloadlinux-dev-96d69e201bbdb05c363e899138f9f42bc8ad8f88.tar.xz
linux-dev-96d69e201bbdb05c363e899138f9f42bc8ad8f88.zip
staging: vt6655: Remove unnecessary blank lines
Remove a bunch of useless vertical whitespace. Convert 3 or more consecutive newlines to 2. Remove blank lines after open brace and before close brace. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/80211mgr.c')
-rw-r--r--drivers/staging/vt6655/80211mgr.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/drivers/staging/vt6655/80211mgr.c b/drivers/staging/vt6655/80211mgr.c
index 9e397aff80c6..4cb26f3faf26 100644
--- a/drivers/staging/vt6655/80211mgr.c
+++ b/drivers/staging/vt6655/80211mgr.c
@@ -61,8 +61,6 @@
/*--------------------- Static Definitions -------------------------*/
-
-
/*--------------------- Static Classes ----------------------------*/
/*--------------------- Static Variables --------------------------*/
@@ -71,14 +69,10 @@ static int msglevel = MSG_LEVEL_INFO;
//static int msglevel =MSG_LEVEL_DEBUG;
/*--------------------- Static Functions --------------------------*/
-
-
/*--------------------- Export Variables --------------------------*/
-
/*--------------------- Export Functions --------------------------*/
-
/*+
*
* Routine Description:
@@ -120,7 +114,6 @@ vMgrEncodeBeacon(
*
-*/
-
void
vMgrDecodeBeacon(
PWLAN_FR_BEACON pFrame
@@ -142,7 +135,6 @@ vMgrDecodeBeacon(
pItem = (PWLAN_IE)((unsigned char *)(WLAN_HDR_A3_DATA_PTR(&(pFrame->pHdr->sA3)))
+ WLAN_BEACON_OFF_SSID);
while (((unsigned char *)pItem) < (pFrame->pBuf + pFrame->len)) {
-
switch (pItem->byElementID) {
case WLAN_EID_SSID:
if (pFrame->pSSID == NULL)
@@ -229,7 +221,6 @@ vMgrDecodeBeacon(
return;
}
-
/*+
*
* Routine Description:
@@ -241,7 +232,6 @@ vMgrDecodeBeacon(
*
-*/
-
void
vMgrEncodeIBSSATIM(
PWLAN_FR_IBSSATIM pFrame
@@ -253,7 +243,6 @@ vMgrEncodeIBSSATIM(
return;
}
-
/*+
*
* Routine Description:
@@ -275,7 +264,6 @@ vMgrDecodeIBSSATIM(
return;
}
-
/*+
*
* Routine Description:
@@ -294,7 +282,6 @@ vMgrEncodeDisassociation(
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
-
// Fixed Fields
pFrame->pwReason = (unsigned short *)(WLAN_HDR_A3_DATA_PTR(&(pFrame->pHdr->sA3))
+ WLAN_DISASSOC_OFF_REASON);
@@ -303,7 +290,6 @@ vMgrEncodeDisassociation(
return;
}
-
/*+
*
* Routine Description:
@@ -340,7 +326,6 @@ vMgrDecodeDisassociation(
*
-*/
-
void
vMgrEncodeAssocRequest(
PWLAN_FR_ASSOCREQ pFrame
@@ -356,7 +341,6 @@ vMgrEncodeAssocRequest(
return;
}
-
/*+
*
* Routine Description: (AP)
@@ -454,7 +438,6 @@ vMgrEncodeAssocResponse(
return;
}
-
/*+
*
* Routine Description:
@@ -500,7 +483,6 @@ vMgrDecodeAssocResponse(
return;
}
-
/*+
*
* Routine Description:
@@ -531,7 +513,6 @@ vMgrEncodeReassocRequest(
return;
}
-
/*+
*
* Routine Description: (AP)
@@ -543,7 +524,6 @@ vMgrEncodeReassocRequest(
*
-*/
-
void
vMgrDecodeReassocRequest(
PWLAN_FR_REASSOCREQ pFrame
@@ -565,7 +545,6 @@ vMgrDecodeReassocRequest(
+ WLAN_REASSOCREQ_OFF_SSID);
while (((unsigned char *)pItem) < (pFrame->pBuf + pFrame->len)) {
-
switch (pItem->byElementID) {
case WLAN_EID_SSID:
if (pFrame->pSSID == NULL)
@@ -602,8 +581,6 @@ vMgrDecodeReassocRequest(
return;
}
-
-
/*+
*
* Routine Description:
@@ -615,7 +592,6 @@ vMgrDecodeReassocRequest(
*
-*/
-
void
vMgrEncodeProbeRequest(
PWLAN_FR_PROBEREQ pFrame
@@ -650,7 +626,6 @@ vMgrDecodeProbeRequest(
pItem = (PWLAN_IE)(WLAN_HDR_A3_DATA_PTR(&(pFrame->pHdr->sA3)));
while (((unsigned char *)pItem) < (pFrame->pBuf + pFrame->len)) {
-
switch (pItem->byElementID) {
case WLAN_EID_SSID:
if (pFrame->pSSID == NULL)
@@ -677,7 +652,6 @@ vMgrDecodeProbeRequest(
return;
}
-
/*+
*
* Routine Description:
@@ -689,7 +663,6 @@ vMgrDecodeProbeRequest(
*
-*/
-
void
vMgrEncodeProbeResponse(
PWLAN_FR_PROBERESP pFrame
@@ -711,8 +684,6 @@ vMgrEncodeProbeResponse(
return;
}
-
-
/*+
*
* Routine Description:
@@ -731,7 +702,6 @@ vMgrDecodeProbeResponse(
{
PWLAN_IE pItem;
-
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
// Fixed Fields
@@ -826,7 +796,6 @@ vMgrDecodeProbeResponse(
return;
}
-
/*+
*
* Routine Description:
@@ -857,7 +826,6 @@ vMgrEncodeAuthen(
return;
}
-
/*+
*
* Routine Description:
@@ -897,7 +865,6 @@ vMgrDecodeAuthen(
return;
}
-
/*+
*
* Routine Description:
@@ -924,7 +891,6 @@ vMgrEncodeDeauthen(
return;
}
-
/*+
*
* Routine Description:
@@ -950,7 +916,6 @@ vMgrDecodeDeauthen(
return;
}
-
/*+
*
* Routine Description: (AP)
@@ -982,7 +947,6 @@ vMgrEncodeReassocResponse(
return;
}
-
/*+
*
* Routine Description:
@@ -994,7 +958,6 @@ vMgrEncodeReassocResponse(
*
-*/
-
void
vMgrDecodeReassocResponse(
PWLAN_FR_REASSOCRESP pFrame