Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162420
b: refs/heads/master
c: 20e3c65
h: refs/heads/master
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent 620a47e commit 1a49813
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 62 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: 0b2e3aefc34d3d5824e687529c6992521765614d
refs/heads/master: 20e3c65381e80ea8411d7786ce786013e52b97fe
6 changes: 0 additions & 6 deletions trunk/drivers/staging/rt2860/sta/assoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,7 @@ VOID MlmeAssocReqAction(
}

#ifdef RT30xx
#ifdef SIOCSIWGENIE
if (pAd->StaCfg.WpaSupplicantUP != 1)
#endif // SIOCSIWGENIE //
#endif
RTMPMakeRSNIE(pAd, pAd->StaCfg.AuthMode, pAd->StaCfg.WepStatus, BSS0);

Expand Down Expand Up @@ -486,15 +484,13 @@ VOID MlmeAssocReqAction(
}

#ifdef RT30xx
#ifdef SIOCSIWGENIE
if (pAd->StaCfg.WpaSupplicantUP == 1)
{
MakeOutgoingFrame(pOutBuffer + FrameLen, &tmp,
pAd->StaCfg.RSNIE_Len, pAd->StaCfg.RSN_IE,
END_OF_ARGS);
}
else
#endif
#endif
{
MakeOutgoingFrame(pOutBuffer + FrameLen, &tmp,
Expand All @@ -507,9 +503,7 @@ VOID MlmeAssocReqAction(
FrameLen += tmp;

#ifdef RT30xx
#ifdef SIOCSIWGENIE
if (pAd->StaCfg.WpaSupplicantUP != 1)
#endif
#endif
{
// Append Variable IE
Expand Down
55 changes: 0 additions & 55 deletions trunk/drivers/staging/rt2860/sta_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,6 @@ int rt_ioctl_iwaplist(struct net_device *dev,
return 0;
}

#ifdef SIOCGIWSCAN
int rt_ioctl_siwscan(struct net_device *dev,
struct iw_request_info *info,
struct iw_point *data, char *extra)
Expand Down Expand Up @@ -1084,9 +1083,6 @@ int rt_ioctl_giwscan(struct net_device *dev,
char *current_ev = extra, *previous_ev = extra;
char *end_buf;
char *current_val, custom[MAX_CUSTOM_LEN] = {0};
#ifndef IWEVGENIE
char idx;
#endif // IWEVGENIE //
struct iw_event iwe;

if (RTMP_TEST_FLAG(pAdapter, fRTMP_ADAPTER_BSS_SCAN_IN_PROGRESS))
Expand Down Expand Up @@ -1313,7 +1309,6 @@ int rt_ioctl_giwscan(struct net_device *dev,
return -E2BIG;
}

#ifdef IWEVGENIE
//WPA IE
if (pAdapter->ScanTab.BssEntry[i].WpaIE.IELen > 0)
{
Expand Down Expand Up @@ -1341,48 +1336,13 @@ int rt_ioctl_giwscan(struct net_device *dev,
if (current_ev == previous_ev)
return -E2BIG;
}
#else
//WPA IE
//================================
if (pAdapter->ScanTab.BssEntry[i].WpaIE.IELen > 0)
{
NdisZeroMemory(&iwe, sizeof(iwe));
memset(&custom[0], 0, MAX_CUSTOM_LEN);
iwe.cmd = IWEVCUSTOM;
iwe.u.data.length = (pAdapter->ScanTab.BssEntry[i].WpaIE.IELen * 2) + 7;
NdisMoveMemory(custom, "wpa_ie=", 7);
for (idx = 0; idx < pAdapter->ScanTab.BssEntry[i].WpaIE.IELen; idx++)
sprintf(custom + strlen(custom), "%02x", pAdapter->ScanTab.BssEntry[i].WpaIE.IE[idx]);
previous_ev = current_ev;
current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, custom);
if (current_ev == previous_ev)
return -E2BIG;
}

//WPA2 IE
if (pAdapter->ScanTab.BssEntry[i].RsnIE.IELen > 0)
{
NdisZeroMemory(&iwe, sizeof(iwe));
memset(&custom[0], 0, MAX_CUSTOM_LEN);
iwe.cmd = IWEVCUSTOM;
iwe.u.data.length = (pAdapter->ScanTab.BssEntry[i].RsnIE.IELen * 2) + 7;
NdisMoveMemory(custom, "rsn_ie=", 7);
for (idx = 0; idx < pAdapter->ScanTab.BssEntry[i].RsnIE.IELen; idx++)
sprintf(custom + strlen(custom), "%02x", pAdapter->ScanTab.BssEntry[i].RsnIE.IE[idx]);
previous_ev = current_ev;
current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, custom);
if (current_ev == previous_ev)
return -E2BIG;
}
#endif // IWEVGENIE //
}

data->length = current_ev - extra;
pAdapter->StaCfg.bScanReqIsFromWebUI = FALSE;
DBGPRINT(RT_DEBUG_ERROR ,("===>rt_ioctl_giwscan. %d(%d) BSS returned, data->length = %d\n",i , pAdapter->ScanTab.BssNr, data->length));
return 0;
}
#endif

int rt_ioctl_siwessid(struct net_device *dev,
struct iw_request_info *info,
Expand Down Expand Up @@ -2214,7 +2174,6 @@ rt_private_show(struct net_device *dev, struct iw_request_info *info,
return Status;
}

#ifdef SIOCSIWMLME
int rt_ioctl_siwmlme(struct net_device *dev,
struct iw_request_info *info,
union iwreq_data *wrqu,
Expand Down Expand Up @@ -2270,7 +2229,6 @@ int rt_ioctl_siwmlme(struct net_device *dev,

return 0;
}
#endif // SIOCSIWMLME //

int rt_ioctl_siwauth(struct net_device *dev,
struct iw_request_info *info,
Expand Down Expand Up @@ -2707,7 +2665,6 @@ rt_ioctl_giwencodeext(struct net_device *dev,
return 0;
}

#ifdef SIOCSIWGENIE
int rt_ioctl_siwgenie(struct net_device *dev,
struct iw_request_info *info,
union iwreq_data *wrqu, char *extra)
Expand All @@ -2731,7 +2688,6 @@ int rt_ioctl_siwgenie(struct net_device *dev,

return 0;
}
#endif // SIOCSIWGENIE //

int rt_ioctl_giwgenie(struct net_device *dev,
struct iw_request_info *info,
Expand All @@ -2746,7 +2702,6 @@ int rt_ioctl_giwgenie(struct net_device *dev,
return 0;
}

#ifdef SIOCSIWGENIE
if (pAd->StaCfg.WpaSupplicantUP == WPA_SUPPLICANT_ENABLE)
{
if (wrqu->data.length < pAd->StaCfg.RSNIE_Len)
Expand All @@ -2756,7 +2711,6 @@ int rt_ioctl_giwgenie(struct net_device *dev,
memcpy(extra, &pAd->StaCfg.RSN_IE[0], pAd->StaCfg.RSNIE_Len);
}
else
#endif // SIOCSIWGENIE //
{
UCHAR RSNIe = IE_WPA;

Expand Down Expand Up @@ -3117,19 +3071,10 @@ static const iw_handler rt_handler[] =
(iw_handler) NULL, /* SIOCGIWTHRSPY */
(iw_handler) rt_ioctl_siwap, /* SIOCSIWAP */
(iw_handler) rt_ioctl_giwap, /* SIOCGIWAP */
#ifdef SIOCSIWMLME
(iw_handler) rt_ioctl_siwmlme, /* SIOCSIWMLME */
#else
(iw_handler) NULL, /* SIOCSIWMLME */
#endif // SIOCSIWMLME //
(iw_handler) rt_ioctl_iwaplist, /* SIOCGIWAPLIST */
#ifdef SIOCGIWSCAN
(iw_handler) rt_ioctl_siwscan, /* SIOCSIWSCAN */
(iw_handler) rt_ioctl_giwscan, /* SIOCGIWSCAN */
#else
(iw_handler) NULL, /* SIOCSIWSCAN */
(iw_handler) NULL, /* SIOCGIWSCAN */
#endif /* SIOCGIWSCAN */
(iw_handler) rt_ioctl_siwessid, /* SIOCSIWESSID */
(iw_handler) rt_ioctl_giwessid, /* SIOCGIWESSID */
(iw_handler) rt_ioctl_siwnickn, /* SIOCSIWNICKN */
Expand Down

0 comments on commit 1a49813

Please sign in to comment.