Commit 66ba14fc authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: rename pstrSetBeaconParam to avoid camelCase

Fix "Avoid camelCase" issue found by checkpatch.pl script.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ecf8d3d6
...@@ -1986,8 +1986,7 @@ static s32 handle_get_inactive_time(struct wilc_vif *vif, ...@@ -1986,8 +1986,7 @@ static s32 handle_get_inactive_time(struct wilc_vif *vif,
return result; return result;
} }
static void handle_add_beacon(struct wilc_vif *vif, static void handle_add_beacon(struct wilc_vif *vif, struct beacon_attr *param)
struct beacon_attr *pstrSetBeaconParam)
{ {
s32 result = 0; s32 result = 0;
struct wid wid; struct wid wid;
...@@ -1995,38 +1994,38 @@ static void handle_add_beacon(struct wilc_vif *vif, ...@@ -1995,38 +1994,38 @@ static void handle_add_beacon(struct wilc_vif *vif,
wid.id = (u16)WID_ADD_BEACON; wid.id = (u16)WID_ADD_BEACON;
wid.type = WID_BIN; wid.type = WID_BIN;
wid.size = pstrSetBeaconParam->head_len + pstrSetBeaconParam->tail_len + 16; wid.size = param->head_len + param->tail_len + 16;
wid.val = kmalloc(wid.size, GFP_KERNEL); wid.val = kmalloc(wid.size, GFP_KERNEL);
if (!wid.val) if (!wid.val)
goto ERRORHANDLER; goto ERRORHANDLER;
cur_byte = wid.val; cur_byte = wid.val;
*cur_byte++ = (pstrSetBeaconParam->interval & 0xFF); *cur_byte++ = (param->interval & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->interval >> 8) & 0xFF); *cur_byte++ = ((param->interval >> 8) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->interval >> 16) & 0xFF); *cur_byte++ = ((param->interval >> 16) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->interval >> 24) & 0xFF); *cur_byte++ = ((param->interval >> 24) & 0xFF);
*cur_byte++ = (pstrSetBeaconParam->dtim_period & 0xFF); *cur_byte++ = (param->dtim_period & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->dtim_period >> 8) & 0xFF); *cur_byte++ = ((param->dtim_period >> 8) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->dtim_period >> 16) & 0xFF); *cur_byte++ = ((param->dtim_period >> 16) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->dtim_period >> 24) & 0xFF); *cur_byte++ = ((param->dtim_period >> 24) & 0xFF);
*cur_byte++ = (pstrSetBeaconParam->head_len & 0xFF); *cur_byte++ = (param->head_len & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->head_len >> 8) & 0xFF); *cur_byte++ = ((param->head_len >> 8) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->head_len >> 16) & 0xFF); *cur_byte++ = ((param->head_len >> 16) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->head_len >> 24) & 0xFF); *cur_byte++ = ((param->head_len >> 24) & 0xFF);
memcpy(cur_byte, pstrSetBeaconParam->head, pstrSetBeaconParam->head_len); memcpy(cur_byte, param->head, param->head_len);
cur_byte += pstrSetBeaconParam->head_len; cur_byte += param->head_len;
*cur_byte++ = (pstrSetBeaconParam->tail_len & 0xFF); *cur_byte++ = (param->tail_len & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->tail_len >> 8) & 0xFF); *cur_byte++ = ((param->tail_len >> 8) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->tail_len >> 16) & 0xFF); *cur_byte++ = ((param->tail_len >> 16) & 0xFF);
*cur_byte++ = ((pstrSetBeaconParam->tail_len >> 24) & 0xFF); *cur_byte++ = ((param->tail_len >> 24) & 0xFF);
if (pstrSetBeaconParam->tail) if (param->tail)
memcpy(cur_byte, pstrSetBeaconParam->tail, pstrSetBeaconParam->tail_len); memcpy(cur_byte, param->tail, param->tail_len);
cur_byte += pstrSetBeaconParam->tail_len; cur_byte += param->tail_len;
result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1, result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1,
wilc_get_vif_idx(vif)); wilc_get_vif_idx(vif));
...@@ -2035,8 +2034,8 @@ static void handle_add_beacon(struct wilc_vif *vif, ...@@ -2035,8 +2034,8 @@ static void handle_add_beacon(struct wilc_vif *vif,
ERRORHANDLER: ERRORHANDLER:
kfree(wid.val); kfree(wid.val);
kfree(pstrSetBeaconParam->head); kfree(param->head);
kfree(pstrSetBeaconParam->tail); kfree(param->tail);
} }
static void handle_del_beacon(struct wilc_vif *vif) static void handle_del_beacon(struct wilc_vif *vif)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment