Commit fc00af0c authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman

staging: rtl8192e: Fix SUSPECT_CODE_INDENT warnings

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