Staging: rt2870: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2684d16649
commit
34b33461e6
11 changed files with 4 additions and 180 deletions
|
@ -6,7 +6,6 @@ EXTRA_CFLAGS += -DRT2870
|
|||
EXTRA_CFLAGS += -DDBG
|
||||
EXTRA_CFLAGS += -DDOT11_N_SUPPORT
|
||||
EXTRA_CFLAGS += -DWPA_SUPPLICANT_SUPPORT
|
||||
EXTRA_CFLAGS += -DNATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
rt2870sta-objs := \
|
||||
common/md5.o \
|
||||
|
|
|
@ -1025,26 +1025,11 @@ VOID STAMlmePeriodicExec(
|
|||
// Lost AP, send disconnect & link down event
|
||||
LinkDown(pAd, FALSE);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
// RTMPPatchMacBbpBug(pAd);
|
||||
MlmeAutoReconnectLastSSID(pAd);
|
||||
|
|
|
@ -3320,9 +3320,7 @@ VOID UserCfgInit(
|
|||
pAd->StaCfg.IEEE8021X = FALSE;
|
||||
pAd->StaCfg.IEEE8021x_required_keys = FALSE;
|
||||
pAd->StaCfg.WpaSupplicantUP = WPA_SUPPLICANT_DISABLE;
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
pAd->StaCfg.WpaSupplicantUP = WPA_SUPPLICANT_ENABLE;
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
|
|
@ -896,19 +896,6 @@ typedef struct _RT_LLTD_ASSOICATION_TABLE {
|
|||
} RT_LLTD_ASSOICATION_TABLE, *PRT_LLTD_ASSOICATION_TABLE;
|
||||
#endif // LLTD_SUPPORT //
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
#define RT_ASSOC_EVENT_FLAG 0x0101
|
||||
#define RT_DISASSOC_EVENT_FLAG 0x0102
|
||||
#define RT_REQIE_EVENT_FLAG 0x0103
|
||||
#define RT_RESPIE_EVENT_FLAG 0x0104
|
||||
#define RT_ASSOCINFO_EVENT_FLAG 0x0105
|
||||
#define RT_PMKIDCAND_FLAG 0x0106
|
||||
#define RT_INTERFACE_DOWN 0x0107
|
||||
#define RT_INTERFACE_UP 0x0108
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#define MAX_CUSTOM_LEN 128
|
||||
|
||||
typedef enum _RT_802_11_D_CLIENT_MODE
|
||||
|
|
|
@ -67,11 +67,9 @@
|
|||
#include "igmp_snoop.h"
|
||||
#endif // IGMP_SNOOP_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef WPA_SUPPLICANT_SUPPORT
|
||||
#error "Build for being controlled by NetworkManager or wext, please set HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y"
|
||||
#error "Build for being controlled by NetworkManager or wext, please set HAS_WPA_SUPPLICANT=y"
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef IKANOS_VX_1X0
|
||||
#include "vr_ikans.h"
|
||||
|
|
|
@ -250,18 +250,6 @@ int rt28xx_close(IN PNET_DEV dev)
|
|||
RTMPCancelTimer(&pAd->StaCfg.StaQuickResponeForRateUpTimer, &Cancelled);
|
||||
RTMPCancelTimer(&pAd->StaCfg.WpaDisassocAndBlockAssocTimer, &Cancelled);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
// send wireless event to wpa_supplicant for infroming interface down.
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_INTERFACE_DOWN;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
MlmeRadioOff(pAd);
|
||||
}
|
||||
|
||||
|
@ -671,18 +659,6 @@ int rt28xx_open(IN PNET_DEV dev)
|
|||
|
||||
IF_DEV_CONFIG_OPMODE_ON_STA(pAd)
|
||||
{
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
// send wireless event to wpa_supplicant for infroming interface down.
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_INTERFACE_UP;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
||||
// Enable Interrupt
|
||||
|
@ -854,13 +830,12 @@ INT __devinit rt28xx_probe(
|
|||
// goto err_out;
|
||||
|
||||
netif_stop_queue(net_dev);
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
/* for supporting Network Manager */
|
||||
/* Set the sysfs physical device reference for the network logical device
|
||||
* if set prior to registration will cause a symlink during initialization.
|
||||
*/
|
||||
SET_NETDEV_DEV(net_dev, &(dev_p->dev));
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
// Allocate RTMP_ADAPTER miniport adapter structure
|
||||
handle = kmalloc(sizeof(struct os_cookie), GFP_KERNEL);
|
||||
|
|
|
@ -5866,10 +5866,8 @@ VOID SendAssocIEsToWpaSupplicant(
|
|||
IN PRTMP_ADAPTER pAd);
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
int wext_notify_event_assoc(
|
||||
IN RTMP_ADAPTER *pAd);
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef DOT11_N_SUPPORT
|
||||
VOID Handle_BSS_Width_Trigger_Events(
|
||||
|
|
|
@ -840,27 +840,11 @@ VOID MlmeDisassocReqAction(
|
|||
RTMPSetTimer(&pAd->MlmeAux.DisassocTimer, Timeout); /* in mSec */
|
||||
pAd->Mlme.AssocMachine.CurrState = DISASSOC_WAIT_RSP;
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -995,21 +979,6 @@ VOID PeerReassocRspAction(
|
|||
AssocPostProc(pAd, Addr2, CapabilityInfo, Aid, SupRate, SupRateLen, ExtRate, ExtRateLen,
|
||||
&EdcaParm, &HtCapability, HtCapabilityLen, &AddHtInfo);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
SendAssocIEsToWpaSupplicant(pAd);
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_ASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
wext_notify_event_assoc(pAd);
|
||||
|
@ -1019,7 +988,6 @@ VOID PeerReassocRspAction(
|
|||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
||||
|
@ -1214,26 +1182,11 @@ VOID PeerDisassocAction(
|
|||
LinkDown(pAd, TRUE);
|
||||
pAd->Mlme.AssocMachine.CurrState = ASSOC_IDLE;
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -1516,36 +1469,6 @@ VOID SwitchBetweenWepAndCkip(
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
VOID SendAssocIEsToWpaSupplicant(
|
||||
IN PRTMP_ADAPTER pAd)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
unsigned char custom[IW_CUSTOM_MAX] = {0};
|
||||
|
||||
if ((pAd->StaCfg.ReqVarIELen + 17) <= IW_CUSTOM_MAX)
|
||||
{
|
||||
sprintf(custom, "ASSOCINFO_ReqIEs=");
|
||||
NdisMoveMemory(custom+17, pAd->StaCfg.ReqVarIEs, pAd->StaCfg.ReqVarIELen);
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.length = pAd->StaCfg.ReqVarIELen + 17;
|
||||
wrqu.data.flags = RT_REQIE_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, custom);
|
||||
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_ASSOCINFO_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
else
|
||||
DBGPRINT(RT_DEBUG_TRACE, ("pAd->StaCfg.ReqVarIELen + 17 > MAX_CUSTOM_LEN\n"));
|
||||
|
||||
return;
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
int wext_notify_event_assoc(
|
||||
IN RTMP_ADAPTER *pAd)
|
||||
{
|
||||
|
@ -1578,8 +1501,6 @@ int wext_notify_event_assoc(
|
|||
return 0;
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
|
||||
BOOLEAN StaAddMacTableEntry(
|
||||
IN PRTMP_ADAPTER pAd,
|
||||
|
@ -1795,21 +1716,6 @@ BOOLEAN StaAddMacTableEntry(
|
|||
|
||||
NdisReleaseSpinLock(&pAd->MacTabLock);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
SendAssocIEsToWpaSupplicant(pAd);
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_ASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
wext_notify_event_assoc(pAd);
|
||||
|
@ -1819,7 +1725,6 @@ BOOLEAN StaAddMacTableEntry(
|
|||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
|
@ -127,14 +127,11 @@ VOID PeerDeauthAction(
|
|||
{
|
||||
DBGPRINT(RT_DEBUG_TRACE,("AUTH_RSP - receive DE-AUTH from our AP (Reason=%d)\n", Reason));
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
|
||||
// send wireless event - for deauthentication
|
||||
if (pAd->CommonCfg.bWirelessEvent)
|
||||
|
|
|
@ -416,7 +416,7 @@ VOID CntlOidSsidProc(
|
|||
}
|
||||
|
||||
pAd->Mlme.CntlMachine.CurrState = CNTL_IDLE;
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
|
@ -425,7 +425,6 @@ VOID CntlOidSsidProc(
|
|||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
}
|
||||
else if (INFRA_ON(pAd))
|
||||
|
@ -555,7 +554,7 @@ VOID CntlOidRTBssidProc(
|
|||
// already connected to the same BSSID, go back to idle state directly
|
||||
DBGPRINT(RT_DEBUG_TRACE, ("CNTL - already in this BSSID. ignore this SET_BSSID request\n"));
|
||||
pAd->Mlme.CntlMachine.CurrState = CNTL_IDLE;
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
|
@ -564,7 +563,6 @@ VOID CntlOidRTBssidProc(
|
|||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -2015,25 +2013,11 @@ VOID LinkDown(
|
|||
RTMP_IO_WRITE32(pAd, MAX_LEN_CFG, 0x1fff);
|
||||
RTMP_CLEAR_FLAG(pAd, fRTMP_ADAPTER_BSS_SCAN_IN_PROGRESS);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP) {
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -2654,7 +2654,6 @@ int rt_ioctl_giwgenie(struct net_device *dev,
|
|||
return 0;
|
||||
}
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
#ifdef SIOCSIWGENIE
|
||||
if (pAd->StaCfg.WpaSupplicantUP == WPA_SUPPLICANT_ENABLE)
|
||||
{
|
||||
|
@ -2666,7 +2665,6 @@ int rt_ioctl_giwgenie(struct net_device *dev,
|
|||
}
|
||||
else
|
||||
#endif // SIOCSIWGENIE //
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
{
|
||||
UCHAR RSNIe = IE_WPA;
|
||||
|
||||
|
|
Loading…
Reference in a new issue