staging: rtl8192e: Fix SUSPECT_CODE_INDENT warnings
Fix SUSPECT_CODE_INDENT warnings (indentation). Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a2e681faa5
commit
fc00af0cd0
@ -36,7 +36,7 @@ void rtl92e_set_bandwidth(struct net_device *dev,
|
||||
|
||||
for (eRFPath = 0; eRFPath < priv->NumTotalRFPath; eRFPath++) {
|
||||
if (!rtl92e_is_legal_rf_path(dev, eRFPath))
|
||||
continue;
|
||||
continue;
|
||||
|
||||
switch (Bandwidth) {
|
||||
case HT_CHANNEL_WIDTH_20:
|
||||
@ -82,7 +82,7 @@ bool rtl92e_config_rf(struct net_device *dev)
|
||||
for (eRFPath = (enum rf90_radio_path)RF90_PATH_A;
|
||||
eRFPath < priv->NumTotalRFPath; eRFPath++) {
|
||||
if (!rtl92e_is_legal_rf_path(dev, eRFPath))
|
||||
continue;
|
||||
continue;
|
||||
|
||||
pPhyReg = &priv->PHYRegDef[eRFPath];
|
||||
|
||||
|
@ -756,8 +756,8 @@ u8 rtl92e_config_rf_path(struct net_device *dev, enum rf90_radio_path eRFPath)
|
||||
case RF90_PATH_D:
|
||||
for (i = 0; i < RadioD_ArrayLength; i += 2) {
|
||||
if (Rtl819XRadioD_Array[i] == 0xfe) {
|
||||
msleep(100);
|
||||
continue;
|
||||
msleep(100);
|
||||
continue;
|
||||
}
|
||||
rtl92e_set_rf_reg(dev, eRFPath, Rtl819XRadioD_Array[i],
|
||||
bMask12Bits,
|
||||
|
@ -713,7 +713,7 @@ static void _rtl92e_dm_tx_power_tracking_callback_tssi(struct net_device *dev)
|
||||
"TSSI_report_value = %d\n",
|
||||
tmp_report[k]);
|
||||
|
||||
if (tmp_report[k] <= 20) {
|
||||
if (tmp_report[k] <= 20) {
|
||||
viviflag = true;
|
||||
break;
|
||||
}
|
||||
@ -1497,7 +1497,7 @@ static void _rtl92e_dm_ctrl_initgain_byrssi_highpwr(struct net_device *dev)
|
||||
dm_digtable.dig_highpwr_state = DM_STA_DIG_ON;
|
||||
|
||||
if (priv->CurrentChannelBW != HT_CHANNEL_WIDTH_20)
|
||||
rtl92e_writeb(dev, (rOFDM0_XATxAFE+3), 0x10);
|
||||
rtl92e_writeb(dev, (rOFDM0_XATxAFE+3), 0x10);
|
||||
else
|
||||
rtl92e_writeb(dev, rOFDM0_RxDetector1, 0x43);
|
||||
} else {
|
||||
@ -2444,9 +2444,9 @@ static void _rtl92e_dm_check_fsync(struct net_device *dev)
|
||||
RegC38_TH) {
|
||||
if (reg_c38_State !=
|
||||
RegC38_NonFsync_Other_AP) {
|
||||
rtl92e_writeb(dev,
|
||||
rOFDM0_RxDetector3,
|
||||
0x90);
|
||||
rtl92e_writeb(dev,
|
||||
rOFDM0_RxDetector3,
|
||||
0x90);
|
||||
|
||||
reg_c38_State =
|
||||
RegC38_NonFsync_Other_AP;
|
||||
|
@ -1200,11 +1200,9 @@ static int rtllib_rx_decrypt(struct rtllib_device *ieee, struct sk_buff *skb,
|
||||
|
||||
if (crypt && !(fc & RTLLIB_FCTL_WEP) &&
|
||||
rtllib_is_eapol_frame(ieee, skb, hdrlen)) {
|
||||
struct eapol *eap = (struct eapol *)(skb->data +
|
||||
24);
|
||||
netdev_dbg(ieee->dev,
|
||||
"RX: IEEE 802.1X EAPOL frame: %s\n",
|
||||
eap_get_type(eap->type));
|
||||
struct eapol *eap = (struct eapol *)(skb->data + 24);
|
||||
netdev_dbg(ieee->dev, "RX: IEEE 802.1X EAPOL frame: %s\n",
|
||||
eap_get_type(eap->type));
|
||||
}
|
||||
|
||||
if (crypt && !(fc & RTLLIB_FCTL_WEP) && !ieee->open_wep &&
|
||||
|
@ -709,7 +709,7 @@ EXPORT_SYMBOL(rtllib_stop_scan);
|
||||
void rtllib_stop_scan_syncro(struct rtllib_device *ieee)
|
||||
{
|
||||
if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
|
||||
ieee->sync_scan_hurryup = 1;
|
||||
ieee->sync_scan_hurryup = 1;
|
||||
} else {
|
||||
if (ieee->rtllib_stop_hw_scan)
|
||||
ieee->rtllib_stop_hw_scan(ieee->dev);
|
||||
@ -2762,10 +2762,10 @@ void rtllib_disassociate(struct rtllib_device *ieee)
|
||||
{
|
||||
netif_carrier_off(ieee->dev);
|
||||
if (ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE)
|
||||
rtllib_reset_queue(ieee);
|
||||
rtllib_reset_queue(ieee);
|
||||
|
||||
if (ieee->data_hard_stop)
|
||||
ieee->data_hard_stop(ieee->dev);
|
||||
ieee->data_hard_stop(ieee->dev);
|
||||
if (IS_DOT11D_ENABLE(ieee))
|
||||
Dot11d_Reset(ieee);
|
||||
ieee->state = RTLLIB_NOLINK;
|
||||
|
@ -487,7 +487,7 @@ static void rtllib_query_protectionmode(struct rtllib_device *ieee,
|
||||
if (ieee->current_network.capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
|
||||
tcb_desc->bUseShortPreamble = true;
|
||||
if (ieee->iw_mode == IW_MODE_MASTER)
|
||||
goto NO_PROTECTION;
|
||||
goto NO_PROTECTION;
|
||||
return;
|
||||
NO_PROTECTION:
|
||||
tcb_desc->bRTSEnable = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user