qcacld-3.0: Fix camelCase in tsap_Config_t
Rename typedef tsap_Config_t and the underlying struct sap_Config to align with the Linux coding standard. Change-Id: I6e8f8b5ab9555c7781f1acf12a0475902866300c CRs-Fixed: 2237721
This commit is contained in:
@@ -543,7 +543,7 @@ enum sap_acs_dfs_mode {
|
||||
ACS_DFS_MODE_DEPRIORITIZE
|
||||
};
|
||||
|
||||
typedef struct sap_Config {
|
||||
typedef struct sap_config {
|
||||
tSap_SSIDInfo_t SSIDinfo;
|
||||
eCsrPhyMode SapHw_mode; /* Wireless Mode */
|
||||
eSapMacAddrACL SapMacaddr_acl;
|
||||
@@ -623,7 +623,7 @@ typedef struct sap_Config {
|
||||
bool chan_switch_hostapd_rate_enabled;
|
||||
bool dfs_beacon_tx_enhanced;
|
||||
uint16_t reduced_beacon_interval;
|
||||
} tsap_Config_t;
|
||||
} tsap_config_t;
|
||||
|
||||
#ifdef FEATURE_WLAN_AP_AP_ACS_OPTIMIZE
|
||||
typedef enum {
|
||||
@@ -912,7 +912,7 @@ bool wlansap_is_channel_leaking_in_nol(struct sap_context *sap_ctx,
|
||||
*/
|
||||
QDF_STATUS wlansap_start_bss(struct sap_context *sap_ctx,
|
||||
tpWLAN_SAPEventCB pSapEventCallback,
|
||||
tsap_Config_t *pConfig, void *pUsrContext);
|
||||
tsap_config_t *pConfig, void *pUsrContext);
|
||||
|
||||
/**
|
||||
* wlansap_stop_bss() - stop BSS.
|
||||
@@ -1006,7 +1006,7 @@ uint16_t wlansap_check_cc_intf(struct sap_context *sap_ctx);
|
||||
* QDF_STATUS_SUCCESS: Success
|
||||
*/
|
||||
QDF_STATUS wlansap_set_mac_acl(struct sap_context *sap_ctx,
|
||||
tsap_Config_t *pConfig);
|
||||
tsap_config_t *pConfig);
|
||||
|
||||
/**
|
||||
* wlansap_disassoc_sta() - initiate disassociation of station.
|
||||
@@ -1296,12 +1296,12 @@ uint32_t wlan_sap_get_vht_ch_width(struct sap_context *sap_ctx);
|
||||
void wlan_sap_set_vht_ch_width(struct sap_context *sap_ctx,
|
||||
uint32_t vht_channel_width);
|
||||
|
||||
QDF_STATUS wlansap_update_sap_config_add_ie(tsap_Config_t *pConfig,
|
||||
QDF_STATUS wlansap_update_sap_config_add_ie(tsap_config_t *pConfig,
|
||||
const uint8_t *
|
||||
pAdditionIEBuffer,
|
||||
uint16_t additionIELength,
|
||||
eUpdateIEsType updateType);
|
||||
QDF_STATUS wlansap_reset_sap_config_add_ie(tsap_Config_t *pConfig,
|
||||
QDF_STATUS wlansap_reset_sap_config_add_ie(tsap_config_t *pConfig,
|
||||
eUpdateIEsType updateType);
|
||||
void wlansap_extend_to_acs_range(tHalHandle hal, uint8_t *startChannelNum,
|
||||
uint8_t *endChannelNum, uint8_t *bandStartChannel,
|
||||
@@ -1357,7 +1357,7 @@ void wlansap_populate_del_sta_params(const uint8_t *mac,
|
||||
*/
|
||||
QDF_STATUS wlansap_acs_chselect(struct sap_context *sap_context,
|
||||
tpWLAN_SAPEventCB pacs_event_callback,
|
||||
tsap_Config_t *pconfig,
|
||||
tsap_config_t *pconfig,
|
||||
void *pusr_context);
|
||||
|
||||
/**
|
||||
|
@@ -2801,7 +2801,7 @@ QDF_STATUS sap_fsm(struct sap_context *sap_ctx, ptWLAN_SAPEvent sap_event)
|
||||
}
|
||||
|
||||
eSapStatus
|
||||
sapconvert_to_csr_profile(tsap_Config_t *pconfig_params, eCsrRoamBssType bssType,
|
||||
sapconvert_to_csr_profile(tsap_config_t *pconfig_params, eCsrRoamBssType bssType,
|
||||
struct csr_roam_profile *profile)
|
||||
{
|
||||
/* Create Roam profile for SoftAP to connect */
|
||||
|
@@ -326,7 +326,7 @@ sap_signal_hdd_event(struct sap_context *sapContext,
|
||||
QDF_STATUS sap_fsm(struct sap_context *sapContext, ptWLAN_SAPEvent sapEvent);
|
||||
|
||||
eSapStatus
|
||||
sapconvert_to_csr_profile(tsap_Config_t *pconfig_params,
|
||||
sapconvert_to_csr_profile(tsap_config_t *pconfig_params,
|
||||
eCsrRoamBssType bssType,
|
||||
struct csr_roam_profile *profile);
|
||||
|
||||
|
@@ -469,7 +469,7 @@ uint16_t wlansap_check_cc_intf(struct sap_context *sap_ctx)
|
||||
* performing the operation
|
||||
*/
|
||||
static QDF_STATUS
|
||||
wlansap_set_scan_acs_channel_params(tsap_Config_t *pconfig,
|
||||
wlansap_set_scan_acs_channel_params(tsap_config_t *pconfig,
|
||||
struct sap_context *psap_ctx,
|
||||
void *pusr_context)
|
||||
{
|
||||
@@ -622,7 +622,7 @@ static inline bool wlan_sap_validate_channel_switch(tHalHandle hal,
|
||||
#endif
|
||||
QDF_STATUS wlansap_start_bss(struct sap_context *sap_ctx,
|
||||
tpWLAN_SAPEventCB pSapEventCallback,
|
||||
tsap_Config_t *pConfig, void *pUsrContext)
|
||||
tsap_config_t *pConfig, void *pUsrContext)
|
||||
{
|
||||
tWLAN_SAPEvent sapEvent; /* State machine event */
|
||||
QDF_STATUS qdf_status = QDF_STATUS_SUCCESS;
|
||||
@@ -759,7 +759,7 @@ fail:
|
||||
} /* wlansap_start_bss */
|
||||
|
||||
QDF_STATUS wlansap_set_mac_acl(struct sap_context *sap_ctx,
|
||||
tsap_Config_t *pConfig)
|
||||
tsap_config_t *pConfig)
|
||||
{
|
||||
QDF_STATUS qdf_status = QDF_STATUS_SUCCESS;
|
||||
|
||||
@@ -2119,7 +2119,7 @@ QDF_STATUS wlansap_set_dfs_target_chnl(tHalHandle hHal, uint8_t target_channel)
|
||||
}
|
||||
|
||||
QDF_STATUS
|
||||
wlansap_update_sap_config_add_ie(tsap_Config_t *pConfig,
|
||||
wlansap_update_sap_config_add_ie(tsap_config_t *pConfig,
|
||||
const uint8_t *pAdditionIEBuffer,
|
||||
uint16_t additionIELength,
|
||||
eUpdateIEsType updateType)
|
||||
@@ -2205,7 +2205,7 @@ wlansap_update_sap_config_add_ie(tsap_Config_t *pConfig,
|
||||
}
|
||||
|
||||
QDF_STATUS
|
||||
wlansap_reset_sap_config_add_ie(tsap_Config_t *pConfig, eUpdateIEsType updateType)
|
||||
wlansap_reset_sap_config_add_ie(tsap_config_t *pConfig, eUpdateIEsType updateType)
|
||||
{
|
||||
if (NULL == pConfig) {
|
||||
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
|
||||
@@ -2436,7 +2436,7 @@ void wlansap_populate_del_sta_params(const uint8_t *mac,
|
||||
|
||||
QDF_STATUS wlansap_acs_chselect(struct sap_context *sap_context,
|
||||
tpWLAN_SAPEventCB pacs_event_callback,
|
||||
tsap_Config_t *pconfig,
|
||||
tsap_config_t *pconfig,
|
||||
void *pusr_context)
|
||||
{
|
||||
tHalHandle h_hal = NULL;
|
||||
|
Reference in New Issue
Block a user