Browse Source

staging: wilc1000: rename pstrDelStaParam to avoid camelCase

Fix "Avoid camelCase" issue found by checkpatch.pl script.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Ajay Singh 7 years ago
parent
commit
47daf86218
1 changed files with 2 additions and 3 deletions
  1. 2 3
      drivers/staging/wilc1000/host_interface.c

+ 2 - 3
drivers/staging/wilc1000/host_interface.c

@@ -2162,8 +2162,7 @@ ERRORHANDLER:
 	complete(&hif_wait_response);
 	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;
 	s32 result = 0;
 	struct wid wid;
 	struct wid wid;
@@ -2179,7 +2178,7 @@ static void handle_del_station(struct wilc_vif *vif,
 
 
 	cur_byte = wid.val;
 	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,
 	result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1,
 				      wilc_get_vif_idx(vif));
 				      wilc_get_vif_idx(vif));