Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 88be64aa authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename WILC_HostIf_PackStaParam to avoid camelCase



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

Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d956839d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2081,7 +2081,7 @@ static void handle_del_beacon(struct wilc_vif *vif)
		netdev_err(vif->ndev, "Failed to send delete beacon\n");
}

static u32 WILC_HostIf_PackStaParam(u8 *buff, struct add_sta_param *param)
static u32 wilc_hif_pack_sta_param(u8 *buff, struct add_sta_param *param)
{
	u8 *cur_byte;

@@ -2127,7 +2127,7 @@ static void handle_add_station(struct wilc_vif *vif,
		goto error;

	cur_byte = wid.val;
	cur_byte += WILC_HostIf_PackStaParam(cur_byte, param);
	cur_byte += wilc_hif_pack_sta_param(cur_byte, param);

	result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1,
				      wilc_get_vif_idx(vif));
@@ -2223,7 +2223,7 @@ static void handle_edit_station(struct wilc_vif *vif,
		goto error;

	cur_byte = wid.val;
	cur_byte += WILC_HostIf_PackStaParam(cur_byte, param);
	cur_byte += wilc_hif_pack_sta_param(cur_byte, param);

	result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1,
				      wilc_get_vif_idx(vif));