Skip to content

Commit

Permalink
staging: rtl8192e: Remove dead code inside 'ifdef MERGE_TO_DO'
Browse files Browse the repository at this point in the history
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 6e1acf2 commit 34a7eb3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 35 deletions.
26 changes: 0 additions & 26 deletions drivers/staging/rtl8192e/r8192E_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,24 +166,6 @@ rtl8192e_SetHwReg(struct net_device *dev,u8 variable,u8* val)
priv->slot_time = val[0];
write_nic_byte(dev, SLOT_TIME, val[0]);

#ifdef MERGE_TO_DO
if (priv->rtllib->current_network.qos_data.supported !=0)
{
for (eACI = 0; eACI < AC_MAX; eACI++)
{
priv->rtllib->SetHwRegHandler(dev, HW_VAR_AC_PARAM, (u8*)(&eACI));
}
}
else
{
u8 u1bAIFS = aSifsTime + (2 * priv->slot_time);

write_nic_byte(dev, EDCAPARA_VO, u1bAIFS);
write_nic_byte(dev, EDCAPARA_VI, u1bAIFS);
write_nic_byte(dev, EDCAPARA_BE, u1bAIFS);
write_nic_byte(dev, EDCAPARA_BK, u1bAIFS);
}
#endif
}
break;

Expand All @@ -205,11 +187,7 @@ rtl8192e_SetHwReg(struct net_device *dev,u8 variable,u8* val)
case HW_VAR_AC_PARAM:
{
u8 pAcParam = *((u8*)val);
#ifdef MERGE_TO_DO
u32 eACI = GET_WMM_AC_PARAM_ACI(pAcParam);
#else
u32 eACI = pAcParam;
#endif
u8 u1bAIFS;
u32 u4bAcParam;
u8 mode = priv->rtllib->mode;
Expand Down Expand Up @@ -256,11 +234,7 @@ rtl8192e_SetHwReg(struct net_device *dev,u8 variable,u8* val)
{
struct rtllib_qos_parameters *qos_parameters = &priv->rtllib->current_network.qos_data.parameters;
u8 pAcParam = *((u8*)val);
#ifdef MERGE_TO_DO
u32 eACI = GET_WMM_AC_PARAM_ACI(pAciAifsn);
#else
u32 eACI = pAcParam;
#endif
PACI_AIFSN pAciAifsn = (PACI_AIFSN)&(qos_parameters->aifs[0]);
u8 ACM = pAciAifsn->f.ACM;
u8 AcmCtrl = read_nic_byte( dev, AcmHwCtrl);
Expand Down
6 changes: 0 additions & 6 deletions drivers/staging/rtl8192e/rtl_ps.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,12 +443,6 @@ bool PlatformSwitchClkReq(struct net_device *dev, u8 value)

Buffer= value;

#ifdef MERGE_TO_DO
if (Adapter->bDriverIsGoingToPnpSetPowerSleep && pDevice->RegSupportLowPowerState
&& value == 0x0)
return false;
#endif

pci_write_config_byte(priv->pdev,0x81,value);
bResult = true;

Expand Down
3 changes: 0 additions & 3 deletions drivers/staging/rtl8192e/rtllib_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,9 +894,6 @@ rtllib_FlushRxTsPendingPkts(struct rtllib_device *ieee, PRX_TS_RECORD pTS)
rtllib_indicate_packets(ieee, RfdArray, RfdCnt);

pTS->RxIndicateSeq = 0xffff;

#ifdef MERGE_TO_DO
#endif
}


Expand Down

0 comments on commit 34a7eb3

Please sign in to comment.