qcacld-3.0: Fix "no space before tabs" style errors

Automated code style checker detected multiple instance of "no space
before tabs," so fix those issues.

Change-Id: I93248e3cfafa047c4fa8c9553769f9457086d01a
CRs-Fixed: 2021507
このコミットが含まれているのは:
Jeff Johnson
2017-03-17 15:19:31 -07:00
committed by Sandeep Puligilla
コミット 560dc56d97
7個のファイルの変更15行の追加16行の削除

ファイルの表示

@@ -77,8 +77,7 @@ enum cds_driver_state {
/**
* struct cds_sme_cbacks - list of sme functions registered with
* CDS
* @sme_get_valid_channels: gets the valid channel list for
* current reg domain
* @sme_get_valid_channels: gets the valid channel list for current reg domain
* @sme_get_nss_for_vdev: gets the nss allowed for the vdev type
*/
struct cds_sme_cbacks {

ファイルの表示

@@ -278,7 +278,7 @@ ol_rx_mpdu_list_next(struct ol_txrx_pdev_t *pdev,
break; \
case htt_tx_status_no_ack: \
TXRX_STATS_ADD(_pdev, pub.tx.dropped.no_ack.pkts, \
_p_cntrs); \
_p_cntrs); \
TXRX_STATS_ADD(_pdev, pub.tx.dropped.no_ack.bytes, \
_b_cntrs); \
break; \

ファイルの表示

@@ -939,7 +939,7 @@ static int hdd_parse_reassoc_v1(hdd_adapter_t *adapter, const char *command)
* hdd_parse_reassoc_v2() - parse version 2 of the REASSOC command
* @adapter: Adapter upon which the command was received
* @command: Command that was received, ASCII command
* followed by binary data
* followed by binary data
*
* This function parses the v2 REASSOC command with the format
*
@@ -1198,7 +1198,7 @@ hdd_parse_sendactionframe_v1(hdd_adapter_t *adapter, const char *command)
* SENDACTIONFRAME command
* @adapter: Adapter upon which the command was received
* @command: Command that was received, ASCII command
* followed by binary data
* followed by binary data
*
* This function parses the v2 SENDACTIONFRAME command with the format
*
@@ -1300,7 +1300,7 @@ hdd_parse_sendactionframe(hdd_adapter_t *adapter, const char *command,
* hdd_parse_channellist() - HDD Parse channel list
* @pValue: Pointer to input channel list
* @ChannelList: Pointer to local output array to record
* channel list
* channel list
* @pNumChannels: Pointer to number of roam scan channels
*
* This function parses the channel list passed in the format
@@ -1473,7 +1473,7 @@ exit:
* SETROAMSCANCHANNELS command
* @adapter: Adapter upon which the command was received
* @command: Command that was received, ASCII command
* followed by binary data
* followed by binary data
*
* This function parses the v2 SETROAMSCANCHANNELS command with the format
*

ファイルの表示

@@ -7290,7 +7290,7 @@ void lim_send_set_dtim_period(tpAniSirGlobal mac_ctx, uint8_t dtim_period,
*
* Frame treat as duplicate:
* if retry bit is set and
* if source address and seq number matches with the last processed frame
* if source address and seq number matches with the last processed frame
*
* Return: false if duplicate frame, else true.
*/

ファイルの表示

@@ -4284,7 +4284,7 @@ QDF_STATUS sme_get_config_param(tHalHandle hHal, tSmeConfigParams *pParam)
* sme_cfg_set_int() - Sets the cfg parameter value.
* @hal: Handle to hal.
* @cfg_id: Configuration parameter ID.
* @value: value to be saved in the cfg parameter.
* @value: value to be saved in the cfg parameter.
*
* This function sets the string value in cfg parameter.
*
@@ -4329,7 +4329,7 @@ QDF_STATUS sme_cfg_set_str(tHalHandle hal, uint16_t cfg_id, uint8_t *str,
* @hal: Handle to hal.
* @cfg_id: Configuration parameter ID.
* @cfg_value: Pointer to variable in which cfg value
* will be saved.
* will be saved.
*
* This function gets the value of the cfg parameter.
*

ファイルの表示

@@ -515,7 +515,7 @@ csr_neighbor_roam_prepare_scan_profile_filter(tpAniSirGlobal pMac,
* @output_ch_list: The output channel list
* @output_num_of_ch: The number of channels in output channel list
* @merged_output_num_of_ch: The final number of channels in the
* output channel list.
* output channel list.
*
* This function is used to filter out the channels based on the
* currently associated AP channel
@@ -571,13 +571,13 @@ QDF_STATUS csr_neighbor_roam_channels_filter_by_current_band(tpAniSirGlobal pMac
* @mac_ctx: Pointer to Global MAC structure
* @session_id: Session ID
* @input_ch_list: The additional channels to merge in to the
* "merged" channels list.
* "merged" channels list.
* @input_num_of_ch: The number of additional channels.
* @output_ch_list: The place to put the "merged" channel list.
* @output_num_of_ch: The original number of channels in the
* "merged" channels list.
* "merged" channels list.
* @merged_output_num_of_ch: The final number of channels in the
* "merged" channel list.
* "merged" channel list.
*
* This function is used to merge two channel list.
* NB: If called with outputNumOfChannels == 0, this routines simply

ファイルの表示

@@ -2169,10 +2169,10 @@ int32_t wma_txrx_fw_stats_reset(tp_wma_handle wma_handle,
}
#ifdef HELIUMPLUS
#define SET_UPLOAD_MASK(_mask, _rate_info) \
#define SET_UPLOAD_MASK(_mask, _rate_info) \
((_mask) = 1 << (_rate_info ## _V2))
#else /* !HELIUMPLUS */
#define SET_UPLOAD_MASK(_mask, _rate_info) \
#define SET_UPLOAD_MASK(_mask, _rate_info) \
((_mask) = 1 << (_rate_info))
#endif