summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6655/wpa.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-03-19 03:55:41 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-25 18:16:17 (GMT)
commit96d69e201bbdb05c363e899138f9f42bc8ad8f88 (patch)
treef3ba7f8c5436cfbce1617f415febbd681fe78fd4 /drivers/staging/vt6655/wpa.c
parentbda2a44e2a015535f08aecd5c98e263098db9e75 (diff)
downloadlinux-fsl-qoriq-96d69e201bbdb05c363e899138f9f42bc8ad8f88.tar.xz
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/wpa.c')
-rw-r--r--drivers/staging/vt6655/wpa.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/vt6655/wpa.c b/drivers/staging/vt6655/wpa.c
index df6cc2f..c5293bb 100644
--- a/drivers/staging/vt6655/wpa.c
+++ b/drivers/staging/vt6655/wpa.c
@@ -52,7 +52,6 @@ const unsigned char abyOUI03[4] = { 0x00, 0x50, 0xf2, 0x03 };
const unsigned char abyOUI04[4] = { 0x00, 0x50, 0xf2, 0x04 };
const unsigned char abyOUI05[4] = { 0x00, 0x50, 0xf2, 0x05 };
-
/*+
*
* Description:
@@ -88,7 +87,6 @@ WPA_ClearRSN(
pBSSList->bWPAValid = false;
}
-
/*+
*
* Description:
@@ -122,7 +120,6 @@ WPA_ParseRSN(
if ((pRSN->len >= 6) // oui1(4)+ver(2)
&& (pRSN->byElementID == WLAN_EID_RSN_WPA) && !memcmp(pRSN->abyOUI, abyOUI01, 4)
&& (pRSN->wVersion == 1)) {
-
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Legal RSN\n");
// update each variable if pRSN is long enough to contain the variable
if (pRSN->len >= 10) //oui1(4)+ver(2)+GKSuite(4)
@@ -198,7 +195,6 @@ WPA_ParseRSN(
}
if (pIE_RSN_Auth != NULL) {
-
n = pIE_RSN_Auth->wAuthCount;
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "n: %d\n", n);
@@ -306,4 +302,3 @@ WPAb_Is_RSN(
} else
return false;
}
-