qcacld-3.0: Fix tab stop checkpatch warnings

Fix tab stop checkpatch warnings.

Change-Id: I4ccbc39b571737413de038fabcd4b8641a39cd62
CRs-Fixed: 2312593
This commit is contained in:
Srinivas Girigowda
2018-09-12 14:56:29 -07:00
committed by nshrivas
parent 4b8d080e37
commit eff16d956b
13 changed files with 19 additions and 19 deletions

View File

@@ -137,7 +137,7 @@ static QDF_STATUS pmo_core_is_gtk_enabled_in_fwr(
pmo_err("cache request mac:%pM, peer mac:%pM are not same",
vdev_ctx->vdev_gtk_req.bssid.bytes,
peer_bssid.bytes);
return QDF_STATUS_E_INVAL;
return QDF_STATUS_E_INVAL;
}
if (vdev_ctx->vdev_gtk_req.flags != PMO_GTK_OFFLOAD_ENABLE) {

View File

@@ -2662,9 +2662,9 @@ tMgmtFrmDropReason lim_is_pkt_candidate_for_drop(tpAniSirGlobal pMac,
dph_table);
if (!sta_ds) {
if (subType == SIR_MAC_MGMT_ASSOC_REQ)
return eMGMT_DROP_NO_DROP;
return eMGMT_DROP_NO_DROP;
else
return eMGMT_DROP_EXCESSIVE_MGMT_FRAME;
return eMGMT_DROP_EXCESSIVE_MGMT_FRAME;
}
if (subType == SIR_MAC_MGMT_ASSOC_REQ)

View File

@@ -1090,9 +1090,9 @@ lim_decide_ap_protection_on_delete(tpAniSirGlobal mac_ctx,
session_entry->protStaCache[i].addr,
sta_ds->staAddr,
sizeof(tSirMacAddr)))) {
session_entry->gLim11gParams.numSta--;
session_entry->protStaCache[i].active = false;
break;
session_entry->gLim11gParams.numSta--;
session_entry->protStaCache[i].active = false;
break;
}
}

View File

@@ -96,7 +96,7 @@ static void lim_delete_sta_util(tpAniSirGlobal mac_ctx, tpDeleteStaContext msg,
* don't trigger STA deletion to avoid the race
* condition.
*/
if ((stads &&
if ((stads &&
((stads->mlmStaContext.mlmState !=
eLIM_MLM_LINK_ESTABLISHED_STATE) &&
(stads->mlmStaContext.mlmState !=

View File

@@ -1332,7 +1332,7 @@ __lim_process_radio_measure_request(tpAniSirGlobal pMac, uint8_t *pRxPacketInfo,
nStatus, frameLen);
QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_ERROR,
pBody, frameLen);
goto err;
goto err;
} else if (DOT11F_WARNED(nStatus)) {
pe_debug("There were warnings while unpacking a Radio Measure request (0x%08x, %d bytes):",
nStatus, frameLen);

View File

@@ -852,7 +852,7 @@ lim_process_assoc_rsp_frame(tpAniSirGlobal mac_ctx,
if (assoc_rsp->QosMapSet.present)
qdf_mem_copy(&session_entry->QosMapSet,
&assoc_rsp->QosMapSet, sizeof(tSirQosMapSet));
else
else
qdf_mem_zero(&session_entry->QosMapSet, sizeof(tSirQosMapSet));
if (assoc_rsp->obss_scanparams.present)

View File

@@ -260,7 +260,7 @@ static void populate_dot11f_tdls_offchannel_params(
}
if (valid_count >= ARRAY_SIZE(suppChannels->bands))
break;
break;
suppChannels->bands[valid_count][0] = validChan[i];
suppChannels->bands[valid_count][1] = 1;
valid_count++;

View File

@@ -2402,7 +2402,7 @@ lim_send_bss_color_change_ie_update(tpAniSirGlobal mac_ctx,
/* Update the beacon template and send to FW */
if (sch_set_fixed_beacon_fields(mac_ctx, session) != QDF_STATUS_SUCCESS) {
pe_err("Unable to set BSS color change IE in beacon");
return;
return;
}
/* Send update beacon template message */

View File

@@ -1048,7 +1048,7 @@ static bool sap_check_channels_same_band(uint16_t ch_num1, uint16_t ch_num2)
ch_num2 <= SIR_11B_CHANNEL_END) ||
(ch_num1 >= SIR_11A_CHANNEL_BEGIN &&
ch_num2 >= SIR_11A_CHANNEL_BEGIN))
return true;
return true;
return false;
}

View File

@@ -2609,7 +2609,7 @@ static void csr_update_bss_with_fils_data(tpAniSirGlobal mac_ctx,
SIR_FILS_IND_ELEM_OFFSET,
*(scan_entry->ie_list.fils_indication + 1),
&fils_indication, false);
if (DOT11F_FAILED(ret)) {
if (DOT11F_FAILED(ret)) {
sme_err("unpack failed ret: 0x%x", ret);
return;
}

View File

@@ -3102,7 +3102,7 @@ void wma_set_channel(tp_wma_handle wma, tpSwitchChannelParams params)
(params->restart_on_chan_switch == true)) {
wma->interfaces[req.vdev_id].is_channel_switch = true;
req.hidden_ssid = intr[vdev_id].vdev_restart_params.ssidHidden;
}
}
if (params->restart_on_chan_switch == true &&
wma->interfaces[req.vdev_id].beacon_filter_enabled)

View File

@@ -2453,7 +2453,7 @@ static void wma_vdev_stats_lost_link_helper(tp_wma_handle wma,
(WMA_DELETE_BSS_REQ != req_msg->msg_type)) {
WMA_LOGD(FL("cannot find DELETE_BSS request message"));
return;
}
}
bcn_snr = vdev_stats->vdev_snr.bcn_snr;
dat_snr = vdev_stats->vdev_snr.dat_snr;
WMA_LOGD(FL("get vdev id %d, beancon snr %d, data snr %d"),

View File

@@ -115,10 +115,10 @@ typedef struct timer_list A_TIMER;
#define wait_event_interruptible_timeout(wq, condition, timeout) \
({ \
long __ret = timeout; \
if (!(condition)) \
__wait_event_interruptible_timeout(wq, condition, __ret); \
__ret; \
long __ret = timeout; \
if (!(condition)) \
__wait_event_interruptible_timeout(wq, condition, __ret); \
__ret; \
})
#endif /* wait_event_interruptible_timeout */