Staging: rt3070: remove dead CARRIER_DETECTION_SUPPORT code
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
faf9626d41
commit
3fce9b6679
|
@ -317,8 +317,6 @@ NDIS_STATUS MlmeHardTransmit(
|
|||
IN PNDIS_PACKET pPacket)
|
||||
{
|
||||
if ((pAd->CommonCfg.RadarDetect.RDMode != RD_NORMAL_MODE)
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
)
|
||||
{
|
||||
return NDIS_STATUS_FAILURE;
|
||||
|
@ -334,8 +332,6 @@ NDIS_STATUS MlmeDataHardTransmit(
|
|||
IN PNDIS_PACKET pPacket)
|
||||
{
|
||||
if ((pAd->CommonCfg.RadarDetect.RDMode != RD_NORMAL_MODE)
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
)
|
||||
{
|
||||
return NDIS_STATUS_FAILURE;
|
||||
|
|
|
@ -495,17 +495,7 @@ VOID ScanNextChannel(
|
|||
ScanTimeIn5gChannel = MIN_CHANNEL_TIME;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT // Roger sync Carrier
|
||||
// carrier detection
|
||||
if (pAd->CommonCfg.CarrierDetect.Enable == TRUE)
|
||||
{
|
||||
ScanType = SCAN_PASSIVE;
|
||||
ScanTimeIn5gChannel = MIN_CHANNEL_TIME;
|
||||
}
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
}
|
||||
|
||||
#endif // CONFIG_STA_SUPPORT //
|
||||
|
||||
//Global country domain(ch1-11:active scan, ch12-14 passive scan)
|
||||
|
|
|
@ -1218,14 +1218,6 @@ VOID STAMlmePeriodicExec(
|
|||
}
|
||||
else
|
||||
{
|
||||
#ifdef CARRIER_DETECTION_SUPPORT // Roger sync Carrier
|
||||
if (pAd->CommonCfg.CarrierDetect.Enable == TRUE)
|
||||
{
|
||||
if ((pAd->Mlme.OneSecPeriodicRound % 5) == 1)
|
||||
MlmeAutoReconnectLastSSID(pAd);
|
||||
}
|
||||
else
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
MlmeAutoReconnectLastSSID(pAd);
|
||||
}
|
||||
}
|
||||
|
@ -1760,14 +1752,6 @@ VOID MlmeCalculateChannelQuality(
|
|||
CHAR MaxRssi;
|
||||
ULONG BeaconLostTime = BEACON_LOST_TIME;
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT // Roger sync Carrier
|
||||
// longer beacon lost time when carrier detection enabled
|
||||
if (pAd->CommonCfg.CarrierDetect.Enable == TRUE)
|
||||
{
|
||||
BeaconLostTime = BEACON_LOST_TIME + BEACON_LOST_TIME/2;
|
||||
}
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
|
||||
MaxRssi = RTMPMaxRssi(pAd, pAd->StaCfg.RssiSample.LastRssi0, pAd->StaCfg.RssiSample.LastRssi1, pAd->StaCfg.RssiSample.LastRssi2);
|
||||
|
||||
//
|
||||
|
@ -3970,9 +3954,6 @@ VOID BssTableSsidSort(
|
|||
if (((pAd->CommonCfg.bIEEE80211H == 1) &&
|
||||
(pAd->MlmeAux.Channel > 14) &&
|
||||
RadarChannelCheck(pAd, pInBss->Channel))
|
||||
#ifdef CARRIER_DETECTION_SUPPORT // Roger sync Carrier
|
||||
|| (pAd->CommonCfg.CarrierDetect.Enable == TRUE)
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
)
|
||||
{
|
||||
if (pInBss->Hidden)
|
||||
|
|
|
@ -1466,24 +1466,6 @@ NDIS_STATUS RTMPReadParametersHook(
|
|||
HTParametersHook(pAd, tmpbuf, buffer);
|
||||
#endif // DOT11_N_SUPPORT //
|
||||
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
//CarrierDetect
|
||||
if(RTMPGetKeyParameter("CarrierDetect", tmpbuf, 128, buffer))
|
||||
{
|
||||
if ((strncmp(tmpbuf, "0", 1) == 0))
|
||||
pAd->CommonCfg.CarrierDetect.Enable = FALSE;
|
||||
else if ((strncmp(tmpbuf, "1", 1) == 0))
|
||||
pAd->CommonCfg.CarrierDetect.Enable = TRUE;
|
||||
else
|
||||
pAd->CommonCfg.CarrierDetect.Enable = FALSE;
|
||||
|
||||
DBGPRINT(RT_DEBUG_TRACE, ("CarrierDetect.Enable=%d\n", pAd->CommonCfg.CarrierDetect.Enable));
|
||||
}
|
||||
else
|
||||
pAd->CommonCfg.CarrierDetect.Enable = FALSE;
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
|
||||
#ifdef CONFIG_STA_SUPPORT
|
||||
IF_DEV_CONFIG_OPMODE_ON_STA(pAd)
|
||||
{
|
||||
|
|
|
@ -1383,23 +1383,6 @@ typedef struct _RADAR_DETECT_STRUCT {
|
|||
UINT8 LongPulseRadarTh;
|
||||
} RADAR_DETECT_STRUCT, *PRADAR_DETECT_STRUCT;
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
typedef enum CD_STATE_n
|
||||
{
|
||||
CD_NORMAL,
|
||||
CD_SILENCE,
|
||||
CD_MAX_STATE
|
||||
} CD_STATE;
|
||||
|
||||
typedef struct CARRIER_DETECTION_s
|
||||
{
|
||||
BOOLEAN Enable;
|
||||
UINT8 CDSessionTime;
|
||||
UINT8 CDPeriod;
|
||||
CD_STATE CD_State;
|
||||
} CARRIER_DETECTION, *PCARRIER_DETECTION;
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
|
||||
typedef enum _REC_BLOCKACK_STATUS
|
||||
{
|
||||
Recipient_NONE=0,
|
||||
|
@ -1868,10 +1851,6 @@ typedef struct _COMMON_CONFIG {
|
|||
// IEEE802.11H--DFS.
|
||||
RADAR_DETECT_STRUCT RadarDetect;
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
CARRIER_DETECTION CarrierDetect;
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
|
||||
#ifdef DOT11_N_SUPPORT
|
||||
// HT
|
||||
UCHAR BASize; // USer desired BAWindowSize. Should not exceed our max capability
|
||||
|
|
|
@ -1336,12 +1336,6 @@ VOID LinkUp(
|
|||
}
|
||||
#endif // DOT11_N_SUPPORT //
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT // Roger sync Carrier
|
||||
// No carrier detection when adhoc
|
||||
// CarrierDetectionStop(pAd);
|
||||
pAd->CommonCfg.CarrierDetect.CD_State = CD_NORMAL;
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
|
||||
#ifdef DOT11_N_SUPPORT
|
||||
if (pAd->CommonCfg.PhyMode >= PHY_11ABGN_MIXED)
|
||||
AdhocTurnOnQos(pAd);
|
||||
|
|
|
@ -360,9 +360,6 @@ VOID MlmeJoinReqAction(
|
|||
if (((pAd->CommonCfg.bIEEE80211H == 1) &&
|
||||
(pAd->MlmeAux.Channel > 14) &&
|
||||
RadarChannelCheck(pAd, pAd->MlmeAux.Channel))
|
||||
#ifdef CARRIER_DETECTION_SUPPORT // Roger sync Carrier
|
||||
|| (pAd->CommonCfg.CarrierDetect.Enable == TRUE)
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
)
|
||||
{
|
||||
//
|
||||
|
|
|
@ -223,12 +223,6 @@ INT Set_Ieee80211dClientMode_Proc(
|
|||
IN PUCHAR arg);
|
||||
#endif // EXT_BUILD_CHANNEL_LIST //
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
INT Set_CarrierDetect_Proc(
|
||||
IN PRTMP_ADAPTER pAd,
|
||||
IN PUCHAR arg);
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
|
||||
static struct {
|
||||
CHAR *name;
|
||||
INT (*set_proc)(PRTMP_ADAPTER pAdapter, PUCHAR arg);
|
||||
|
@ -304,9 +298,6 @@ static struct {
|
|||
#ifdef EXT_BUILD_CHANNEL_LIST
|
||||
{"11dClientMode", Set_Ieee80211dClientMode_Proc},
|
||||
#endif // EXT_BUILD_CHANNEL_LIST //
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
{"CarrierDetect", Set_CarrierDetect_Proc},
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
//2008/09/11:KH add to support efuse<--
|
||||
#ifdef RT30xx
|
||||
{"efuseFreeNumber", set_eFuseGetFreeBlockCount_Proc},
|
||||
|
@ -7003,19 +6994,3 @@ INT Set_Ieee80211dClientMode_Proc(
|
|||
return TRUE;
|
||||
}
|
||||
#endif // EXT_BUILD_CHANNEL_LIST //
|
||||
|
||||
#ifdef CARRIER_DETECTION_SUPPORT
|
||||
INT Set_CarrierDetect_Proc(
|
||||
IN PRTMP_ADAPTER pAd,
|
||||
IN PUCHAR arg)
|
||||
{
|
||||
if (simple_strtol(arg, 0, 10) == 0)
|
||||
pAd->CommonCfg.CarrierDetect.Enable = FALSE;
|
||||
else
|
||||
pAd->CommonCfg.CarrierDetect.Enable = TRUE;
|
||||
|
||||
DBGPRINT(RT_DEBUG_TRACE, ("IF Set_CarrierDetect_Proc::(CarrierDetect.Enable=%d)\n", pAd->CommonCfg.CarrierDetect.Enable));
|
||||
return TRUE;
|
||||
}
|
||||
#endif // CARRIER_DETECTION_SUPPORT //
|
||||
|
||||
|
|
Loading…
Reference in New Issue