staging: wilc1000: rename pstrCfgParamVal in wilc_hif_set_cfg
This patch renames pstrCfgParamVal to cfg_param to avoid camelcase. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4168da7187
commit
483ab2aa00
@ -3559,7 +3559,7 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
|
|||||||
}
|
}
|
||||||
|
|
||||||
int wilc_hif_set_cfg(struct wilc_vif *vif,
|
int wilc_hif_set_cfg(struct wilc_vif *vif,
|
||||||
struct cfg_param_val *pstrCfgParamVal)
|
struct cfg_param_val *cfg_param)
|
||||||
{
|
{
|
||||||
int result = 0;
|
int result = 0;
|
||||||
struct host_if_msg msg;
|
struct host_if_msg msg;
|
||||||
@ -3572,7 +3572,7 @@ int wilc_hif_set_cfg(struct wilc_vif *vif,
|
|||||||
|
|
||||||
memset(&msg, 0, sizeof(struct host_if_msg));
|
memset(&msg, 0, sizeof(struct host_if_msg));
|
||||||
msg.id = HOST_IF_MSG_CFG_PARAMS;
|
msg.id = HOST_IF_MSG_CFG_PARAMS;
|
||||||
msg.body.cfg_info.cfg_attr_info = *pstrCfgParamVal;
|
msg.body.cfg_info.cfg_attr_info = *cfg_param;
|
||||||
msg.vif = vif;
|
msg.vif = vif;
|
||||||
|
|
||||||
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
|
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
|
||||||
|
@ -338,7 +338,7 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
|
|||||||
size_t ies_len, wilc_scan_result scan_result, void *user_arg,
|
size_t ies_len, wilc_scan_result scan_result, void *user_arg,
|
||||||
struct hidden_network *hidden_network);
|
struct hidden_network *hidden_network);
|
||||||
int wilc_hif_set_cfg(struct wilc_vif *vif,
|
int wilc_hif_set_cfg(struct wilc_vif *vif,
|
||||||
struct cfg_param_val *pstrCfgParamVal);
|
struct cfg_param_val *cfg_param);
|
||||||
int wilc_init(struct net_device *dev, struct host_if_drv **hif_drv_handler);
|
int wilc_init(struct net_device *dev, struct host_if_drv **hif_drv_handler);
|
||||||
s32 wilc_deinit(struct wilc_vif *vif);
|
s32 wilc_deinit(struct wilc_vif *vif);
|
||||||
int wilc_add_beacon(struct wilc_vif *vif, u32 interval, u32 dtim_period,
|
int wilc_add_beacon(struct wilc_vif *vif, u32 interval, u32 dtim_period,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user