From: Ajay Singh Date: Tue, 20 Feb 2018 14:57:58 +0000 (+0530) Subject: staging: wilc1000: rename pstrDelStaParam to avoid camelCase X-Git-Tag: v4.17-rc1~124^2~341 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=47daf8621862d1848383d17758aa3c3855febd45;p=linux.git staging: wilc1000: rename pstrDelStaParam to avoid camelCase Fix "Avoid camelCase" issue found by checkpatch.pl script. Signed-off-by: Ajay Singh Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 64a20606d9e6..8ec33b36ad71 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -2162,8 +2162,7 @@ static void handle_del_all_sta(struct wilc_vif *vif, complete(&hif_wait_response); } -static void handle_del_station(struct wilc_vif *vif, - struct del_sta *pstrDelStaParam) +static void handle_del_station(struct wilc_vif *vif, struct del_sta *param) { s32 result = 0; struct wid wid; @@ -2179,7 +2178,7 @@ static void handle_del_station(struct wilc_vif *vif, cur_byte = wid.val; - ether_addr_copy(cur_byte, pstrDelStaParam->mac_addr); + ether_addr_copy(cur_byte, param->mac_addr); result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1, wilc_get_vif_idx(vif));