* @version 1.0
*/
struct cfg_param_attr {
- tstrCfgParamVal pstrCfgParamVal;
+ struct cfg_param_val pstrCfgParamVal;
};
/*!
* @date 8 March 2012
* @version 1.0
*/
-s32 hif_set_cfg(tstrWILC_WFIDrv *hWFIDrv, tstrCfgParamVal *pstrCfgParamVal)
+s32 hif_set_cfg(tstrWILC_WFIDrv *hWFIDrv, struct cfg_param_val *pstrCfgParamVal)
{
s32 s32Error = 0;
MBPS_54 = 54
} CURRENT_TX_RATE_T;
-typedef struct {
+struct cfg_param_val {
u32 u32SetCfgFlag;
u8 ht_enable;
u8 bss_type;
u16 passive_scan_time;
CURRENT_TX_RATE_T curr_tx_rate;
-} tstrCfgParamVal;
+};
typedef enum {
RETRY_SHORT = BIT(0),
tenuHostIFstate enuHostIFstate;
u8 au8AssociatedBSSID[ETH_ALEN];
- tstrCfgParamVal strCfgValues;
+ struct cfg_param_val strCfgValues;
/* semaphores */
struct semaphore gtOsCfgValuesSem;
struct semaphore hSemTestKeyBlock;
* @date 8 March 2012
* @version 1.0
*/
-s32 hif_set_cfg(tstrWILC_WFIDrv *hWFIDrv, tstrCfgParamVal *pstrCfgParamVal);
+s32 hif_set_cfg(tstrWILC_WFIDrv *hWFIDrv, struct cfg_param_val *pstrCfgParamVal);
/**
* @brief gets configuration wids values
static int set_wiphy_params(struct wiphy *wiphy, u32 changed)
{
s32 s32Error = 0;
- tstrCfgParamVal pstrCfgParamVal;
+ struct cfg_param_val pstrCfgParamVal;
struct wilc_priv *priv;
priv = wiphy_priv(wiphy);