staging: wilc1000: rename u8AssocNumb in wilc_del_allstation

This patch renames u8AssocNumb to assoc_sta 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:
Chaehyun Lim 2016-01-03 17:35:54 +09:00 committed by Greg Kroah-Hartman
parent cc971eec56
commit 9d6cec9f46

View file

@ -4307,7 +4307,7 @@ int wilc_del_allstation(struct wilc_vif *vif, u8 mac_addr[][ETH_ALEN])
struct host_if_drv *hif_drv = vif->hif_drv;
u8 zero_addr[ETH_ALEN] = {0};
int i;
u8 u8AssocNumb = 0;
u8 assoc_sta = 0;
if (!hif_drv) {
PRINT_ER("driver is null\n");
@ -4331,15 +4331,15 @@ int wilc_del_allstation(struct wilc_vif *vif, u8 mac_addr[][ETH_ALEN])
del_all_sta_info->del_all_sta[i][3],
del_all_sta_info->del_all_sta[i][4],
del_all_sta_info->del_all_sta[i][5]);
u8AssocNumb++;
assoc_sta++;
}
}
if (!u8AssocNumb) {
if (!assoc_sta) {
PRINT_D(CFG80211_DBG, "NO ASSOCIATED STAS\n");
return result;
}
del_all_sta_info->assoc_sta = u8AssocNumb;
del_all_sta_info->assoc_sta = assoc_sta;
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
if (result)