Commit 11aacc28 authored by Mike McCormack's avatar Mike McCormack Committed by Greg Kroah-Hartman

Staging: rtl8192e: Remove #if 1 blocks

Signed-off-by: default avatarMike McCormack <mikem@ring3k.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 83184e69
...@@ -1606,11 +1606,10 @@ static void rtl8192_link_change(struct net_device *dev) ...@@ -1606,11 +1606,10 @@ static void rtl8192_link_change(struct net_device *dev)
{ {
rtl8192_net_update(dev); rtl8192_net_update(dev);
rtl8192_update_ratr_table(dev); rtl8192_update_ratr_table(dev);
#if 1
//add this as in pure N mode, wep encryption will use software way, but there is no chance to set this as wep will not set group key in wext. WB.2008.07.08 //add this as in pure N mode, wep encryption will use software way, but there is no chance to set this as wep will not set group key in wext. WB.2008.07.08
if ((KEY_TYPE_WEP40 == ieee->pairwise_key_type) || (KEY_TYPE_WEP104 == ieee->pairwise_key_type)) if ((KEY_TYPE_WEP40 == ieee->pairwise_key_type) || (KEY_TYPE_WEP104 == ieee->pairwise_key_type))
EnableHWSecurityConfig8192(dev); EnableHWSecurityConfig8192(dev);
#endif
} }
else else
{ {
...@@ -3157,7 +3156,6 @@ static RT_STATUS rtl8192_adapter_start(struct net_device *dev) ...@@ -3157,7 +3156,6 @@ static RT_STATUS rtl8192_adapter_start(struct net_device *dev)
RT_TRACE(COMP_INIT, "Before C-cut\n"); RT_TRACE(COMP_INIT, "Before C-cut\n");
} }
#if 1
//Firmware download //Firmware download
RT_TRACE(COMP_INIT, "Load Firmware!\n"); RT_TRACE(COMP_INIT, "Load Firmware!\n");
bfirmwareok = init_firmware(dev); bfirmwareok = init_firmware(dev);
...@@ -3166,7 +3164,7 @@ static RT_STATUS rtl8192_adapter_start(struct net_device *dev) ...@@ -3166,7 +3164,7 @@ static RT_STATUS rtl8192_adapter_start(struct net_device *dev)
return rtStatus; return rtStatus;
} }
RT_TRACE(COMP_INIT, "Load Firmware finished!\n"); RT_TRACE(COMP_INIT, "Load Firmware finished!\n");
#endif
//RF config //RF config
if(priv->ResetProgress == RESET_TYPE_NORESET) if(priv->ResetProgress == RESET_TYPE_NORESET)
{ {
...@@ -3465,7 +3463,6 @@ TxCheckStuck(struct net_device *dev) ...@@ -3465,7 +3463,6 @@ TxCheckStuck(struct net_device *dev)
break; break;
} }
#if 1
if(bCheckFwTxCnt) if(bCheckFwTxCnt)
{ {
if(HalTxCheckStuck8190Pci(dev)) if(HalTxCheckStuck8190Pci(dev))
...@@ -3474,7 +3471,7 @@ TxCheckStuck(struct net_device *dev) ...@@ -3474,7 +3471,7 @@ TxCheckStuck(struct net_device *dev)
return RESET_TYPE_SILENT; return RESET_TYPE_SILENT;
} }
} }
#endif
return RESET_TYPE_NORESET; return RESET_TYPE_NORESET;
} }
...@@ -3562,7 +3559,7 @@ rtl819x_ifcheck_resetornot(struct net_device *dev) ...@@ -3562,7 +3559,7 @@ rtl819x_ifcheck_resetornot(struct net_device *dev)
rfState = priv->ieee80211->eRFPowerState; rfState = priv->ieee80211->eRFPowerState;
TxResetType = TxCheckStuck(dev); TxResetType = TxCheckStuck(dev);
#if 1
if( rfState != eRfOff && if( rfState != eRfOff &&
/*ADAPTER_TEST_STATUS_FLAG(Adapter, ADAPTER_STATUS_FW_DOWNLOAD_FAILURE)) &&*/ /*ADAPTER_TEST_STATUS_FLAG(Adapter, ADAPTER_STATUS_FW_DOWNLOAD_FAILURE)) &&*/
(priv->ieee80211->iw_mode != IW_MODE_ADHOC)) (priv->ieee80211->iw_mode != IW_MODE_ADHOC))
...@@ -3577,7 +3574,6 @@ rtl819x_ifcheck_resetornot(struct net_device *dev) ...@@ -3577,7 +3574,6 @@ rtl819x_ifcheck_resetornot(struct net_device *dev)
// set, STA cannot hear any packet a all. Emily, 2008.04.12 // set, STA cannot hear any packet a all. Emily, 2008.04.12
RxResetType = RxCheckStuck(dev); RxResetType = RxCheckStuck(dev);
} }
#endif
RT_TRACE(COMP_RESET,"%s(): TxResetType is %d, RxResetType is %d\n",__FUNCTION__,TxResetType,RxResetType); RT_TRACE(COMP_RESET,"%s(): TxResetType is %d, RxResetType is %d\n",__FUNCTION__,TxResetType,RxResetType);
if(TxResetType==RESET_TYPE_NORMAL || RxResetType==RESET_TYPE_NORMAL) if(TxResetType==RESET_TYPE_NORMAL || RxResetType==RESET_TYPE_NORMAL)
...@@ -3757,7 +3753,7 @@ static void rtl819x_ifsilentreset(struct net_device *dev) ...@@ -3757,7 +3753,7 @@ static void rtl819x_ifsilentreset(struct net_device *dev)
// Set the variable for reset. // Set the variable for reset.
priv->ResetProgress = RESET_TYPE_SILENT; priv->ResetProgress = RESET_TYPE_SILENT;
// rtl8192_close(dev); // rtl8192_close(dev);
#if 1
down(&priv->wx_sem); down(&priv->wx_sem);
if(priv->up == 0) if(priv->up == 0)
{ {
...@@ -3810,18 +3806,13 @@ static void rtl819x_ifsilentreset(struct net_device *dev) ...@@ -3810,18 +3806,13 @@ static void rtl819x_ifsilentreset(struct net_device *dev)
RT_TRACE(COMP_ERR," ERR!!! %s(): Reset Failed!!\n",__FUNCTION__); RT_TRACE(COMP_ERR," ERR!!! %s(): Reset Failed!!\n",__FUNCTION__);
} }
} }
#endif
ieee->is_silent_reset = 1; ieee->is_silent_reset = 1;
#if 1
EnableHWSecurityConfig8192(dev); EnableHWSecurityConfig8192(dev);
#if 1
if(ieee->state == IEEE80211_LINKED && ieee->iw_mode == IW_MODE_INFRA) if(ieee->state == IEEE80211_LINKED && ieee->iw_mode == IW_MODE_INFRA)
{ {
ieee->set_chan(ieee->dev, ieee->current_network.channel); ieee->set_chan(ieee->dev, ieee->current_network.channel);
#if 1
queue_work(ieee->wq, &ieee->associate_complete_wq); queue_work(ieee->wq, &ieee->associate_complete_wq);
#endif
} }
else if(ieee->state == IEEE80211_LINKED && ieee->iw_mode == IW_MODE_ADHOC) else if(ieee->state == IEEE80211_LINKED && ieee->iw_mode == IW_MODE_ADHOC)
...@@ -3837,7 +3828,6 @@ static void rtl819x_ifsilentreset(struct net_device *dev) ...@@ -3837,7 +3828,6 @@ static void rtl819x_ifsilentreset(struct net_device *dev)
ieee->data_hard_resume(ieee->dev); ieee->data_hard_resume(ieee->dev);
netif_carrier_on(ieee->dev); netif_carrier_on(ieee->dev);
} }
#endif
CamRestoreAllEntry(dev); CamRestoreAllEntry(dev);
...@@ -3853,7 +3843,6 @@ static void rtl819x_ifsilentreset(struct net_device *dev) ...@@ -3853,7 +3843,6 @@ static void rtl819x_ifsilentreset(struct net_device *dev)
// For test --> force write UFWP. // For test --> force write UFWP.
write_nic_byte(dev, UFWP, 1); write_nic_byte(dev, UFWP, 1);
RT_TRACE(COMP_RESET, "Reset finished!! ====>[%d]\n", priv->reset_count); RT_TRACE(COMP_RESET, "Reset finished!! ====>[%d]\n", priv->reset_count);
#endif
} }
} }
...@@ -4228,7 +4217,7 @@ static void rtl819x_watchdog_wqcallback(struct work_struct *work) ...@@ -4228,7 +4217,7 @@ static void rtl819x_watchdog_wqcallback(struct work_struct *work)
return; return;
} }
/* disable silent reset temply 2008.9.11*/ /* disable silent reset temply 2008.9.11*/
#if 1
if( ((priv->force_reset) || (!priv->bDisableNormalResetCheck && ResetType==RESET_TYPE_SILENT))) // This is control by OID set in Pomelo if( ((priv->force_reset) || (!priv->bDisableNormalResetCheck && ResetType==RESET_TYPE_SILENT))) // This is control by OID set in Pomelo
{ {
priv->watchdog_last_time = 1; priv->watchdog_last_time = 1;
...@@ -4236,7 +4225,7 @@ static void rtl819x_watchdog_wqcallback(struct work_struct *work) ...@@ -4236,7 +4225,7 @@ static void rtl819x_watchdog_wqcallback(struct work_struct *work)
} }
else else
priv->watchdog_last_time = 0; priv->watchdog_last_time = 0;
#endif
priv->force_reset = false; priv->force_reset = false;
priv->bForcedSilentReset = false; priv->bForcedSilentReset = false;
priv->bResetInProgress = false; priv->bResetInProgress = false;
...@@ -4807,7 +4796,7 @@ static void rtl8192_process_phyinfo(struct r8192_priv * priv, u8* buffer,struct ...@@ -4807,7 +4796,7 @@ static void rtl8192_process_phyinfo(struct r8192_priv * priv, u8* buffer,struct
{ {
priv->undecorated_smoothed_pwdb = pprevious_stats->RxPWDBAll; priv->undecorated_smoothed_pwdb = pprevious_stats->RxPWDBAll;
} }
#if 1
if(pprevious_stats->RxPWDBAll > (u32)priv->undecorated_smoothed_pwdb) if(pprevious_stats->RxPWDBAll > (u32)priv->undecorated_smoothed_pwdb)
{ {
priv->undecorated_smoothed_pwdb = priv->undecorated_smoothed_pwdb =
...@@ -4821,20 +4810,6 @@ static void rtl8192_process_phyinfo(struct r8192_priv * priv, u8* buffer,struct ...@@ -4821,20 +4810,6 @@ static void rtl8192_process_phyinfo(struct r8192_priv * priv, u8* buffer,struct
( ((priv->undecorated_smoothed_pwdb)*(Rx_Smooth_Factor-1)) + ( ((priv->undecorated_smoothed_pwdb)*(Rx_Smooth_Factor-1)) +
(pprevious_stats->RxPWDBAll)) /(Rx_Smooth_Factor); (pprevious_stats->RxPWDBAll)) /(Rx_Smooth_Factor);
} }
#else
//Fixed by Jacken 2008-03-20
if(pPreviousRfd->Status.RxPWDBAll > (u32)pHalData->UndecoratedSmoothedPWDB)
{
pHalData->UndecoratedSmoothedPWDB =
( ((pHalData->UndecoratedSmoothedPWDB)* 5) + (pPreviousRfd->Status.RxPWDBAll)) / 6;
pHalData->UndecoratedSmoothedPWDB = pHalData->UndecoratedSmoothedPWDB + 1;
}
else
{
pHalData->UndecoratedSmoothedPWDB =
( ((pHalData->UndecoratedSmoothedPWDB)* 5) + (pPreviousRfd->Status.RxPWDBAll)) / 6;
}
#endif
} }
// //
...@@ -5279,7 +5254,7 @@ static void TranslateRxSignalStuff819xpci(struct net_device *dev, ...@@ -5279,7 +5254,7 @@ static void TranslateRxSignalStuff819xpci(struct net_device *dev,
(!compare_ether_addr(priv->ieee80211->current_network.bssid, (fc & IEEE80211_FCTL_TODS)? hdr->addr1 : (fc & IEEE80211_FCTL_FROMDS )? hdr->addr2 : hdr->addr3)) (!compare_ether_addr(priv->ieee80211->current_network.bssid, (fc & IEEE80211_FCTL_TODS)? hdr->addr1 : (fc & IEEE80211_FCTL_FROMDS )? hdr->addr2 : hdr->addr3))
&& (!pstats->bHwError) && (!pstats->bCRC)&& (!pstats->bICV)); && (!pstats->bHwError) && (!pstats->bCRC)&& (!pstats->bICV));
bpacket_toself = bpacket_match_bssid & (!compare_ether_addr(praddr, priv->ieee80211->dev->dev_addr)); bpacket_toself = bpacket_match_bssid & (!compare_ether_addr(praddr, priv->ieee80211->dev->dev_addr));
#if 1//cosa
if(WLAN_FC_GET_FRAMETYPE(fc)== IEEE80211_STYPE_BEACON) if(WLAN_FC_GET_FRAMETYPE(fc)== IEEE80211_STYPE_BEACON)
{ {
bPacketBeacon = true; bPacketBeacon = true;
...@@ -5290,8 +5265,6 @@ static void TranslateRxSignalStuff819xpci(struct net_device *dev, ...@@ -5290,8 +5265,6 @@ static void TranslateRxSignalStuff819xpci(struct net_device *dev,
bToSelfBA = true; bToSelfBA = true;
} }
#endif
// //
// Process PHY information for previous packet (RSSI/PWDB/EVM) // Process PHY information for previous packet (RSSI/PWDB/EVM)
// //
...@@ -5961,7 +5934,7 @@ void EnableHWSecurityConfig8192(struct net_device *dev) ...@@ -5961,7 +5934,7 @@ void EnableHWSecurityConfig8192(struct net_device *dev)
struct ieee80211_device* ieee = priv->ieee80211; struct ieee80211_device* ieee = priv->ieee80211;
SECR_value = SCR_TxEncEnable | SCR_RxDecEnable; SECR_value = SCR_TxEncEnable | SCR_RxDecEnable;
#if 1
if (((KEY_TYPE_WEP40 == ieee->pairwise_key_type) || (KEY_TYPE_WEP104 == ieee->pairwise_key_type)) && (priv->ieee80211->auth_mode != 2)) if (((KEY_TYPE_WEP40 == ieee->pairwise_key_type) || (KEY_TYPE_WEP104 == ieee->pairwise_key_type)) && (priv->ieee80211->auth_mode != 2))
{ {
SECR_value |= SCR_RxUseDK; SECR_value |= SCR_RxUseDK;
...@@ -5973,8 +5946,6 @@ void EnableHWSecurityConfig8192(struct net_device *dev) ...@@ -5973,8 +5946,6 @@ void EnableHWSecurityConfig8192(struct net_device *dev)
SECR_value |= SCR_TxUseDK; SECR_value |= SCR_TxUseDK;
} }
#endif
//add HWSec active enable here. //add HWSec active enable here.
//default using hwsec. when peer AP is in N mode only and pairwise_key_type is none_aes(which HT_IOT_ACT_PURE_N_MODE indicates it), use software security. when peer AP is in b,g,n mode mixed and pairwise_key_type is none_aes, use g mode hw security. WB on 2008.7.4 //default using hwsec. when peer AP is in N mode only and pairwise_key_type is none_aes(which HT_IOT_ACT_PURE_N_MODE indicates it), use software security. when peer AP is in b,g,n mode mixed and pairwise_key_type is none_aes, use g mode hw security. WB on 2008.7.4
ieee->hwsec_active = 1; ieee->hwsec_active = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment